Minor fixes for compile warnings/errors in Linux.

This commit is contained in:
Stephen Anthony 2019-02-11 11:36:13 -03:30
parent b6b5930a2d
commit 854a891a36
3 changed files with 3 additions and 2 deletions

View File

@ -358,4 +358,4 @@ bool ControllerDetector::isProbablySaveKey(const BytePtr& image, uInt32 size, Co
} }
return false; return false;
} }

View File

@ -41,7 +41,7 @@ class ControllerDetector
@param size The size of the ROM image @param size The size of the ROM image
@param controller The provided left controller type of the ROM image @param controller The provided left controller type of the ROM image
@param port The port to be checked @param port The port to be checked
@param system The osystem associated with the system @param osystem The osystem associated with the system
@return The detected controller name @return The detected controller name
*/ */
static string detect(const BytePtr& image, uInt32 size, static string detect(const BytePtr& image, uInt32 size,

View File

@ -52,6 +52,7 @@ MODULE_OBJS := \
src/emucore/CompuMate.o \ src/emucore/CompuMate.o \
src/emucore/Console.o \ src/emucore/Console.o \
src/emucore/Control.o \ src/emucore/Control.o \
src/emucore/ControllerDetector.o \
src/emucore/DispatchResult.o \ src/emucore/DispatchResult.o \
src/emucore/Driving.o \ src/emucore/Driving.o \
src/emucore/EventHandler.o \ src/emucore/EventHandler.o \