Fix compile error for UNIX builds.

This commit is contained in:
Stephen Anthony 2020-04-16 10:33:37 -02:30
parent 646f2a1daa
commit edab66de50
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ MODULE_OBJS := \
src/debugger/gui/CartCDFWidget.o \
src/debugger/gui/CartCDFInfoWidget.o \
src/debugger/gui/CartCMWidget.o \
src/debugger/gui/CartCTYWidget.o \
src/debugger/gui/CartCTYWidget.o \
src/debugger/gui/CartCVWidget.o \
src/debugger/gui/CartDFSCWidget.o \
src/debugger/gui/CartDFWidget.o \

View File

@ -239,7 +239,7 @@ class CartridgeEnhanced : public Cartridge
static constexpr bool RAM_HIGH_WP = false;
// The maximum shift (for a 4K bank size)
static constexpr uInt16 MAX_BANK_SHIFT = 12; ; // -> 4K
static constexpr uInt16 MAX_BANK_SHIFT = 12; // -> 4K
protected:
/**

View File

@ -20,7 +20,7 @@ MODULE_OBJS := \
src/emucore/CartCDF.o \
src/emucore/CartCM.o \
src/emucore/CartCTY.o \
src/emucore/CartCV.o \
src/emucore/CartCV.o \
src/emucore/CartDPC.o \
src/emucore/CartDPCPlus.o \
src/emucore/CartE0.o \