mirror of https://github.com/stella-emu/stella.git
Fix compile error in Linux.
This commit is contained in:
parent
093c10bd00
commit
b51d6c2fce
|
@ -81,7 +81,7 @@ class RomImageWidget : public Widget, public CommandSender
|
||||||
FSList myImageList;
|
FSList myImageList;
|
||||||
|
|
||||||
// Index of currently displayed image
|
// Index of currently displayed image
|
||||||
int myImageIdx{0};
|
size_t myImageIdx{0};
|
||||||
|
|
||||||
// Current x-position of the mouse
|
// Current x-position of the mouse
|
||||||
int myMouseX{0};
|
int myMouseX{0};
|
||||||
|
|
|
@ -49,7 +49,6 @@ MODULE_OBJS := \
|
||||||
src/gui/RomAuditDialog.o \
|
src/gui/RomAuditDialog.o \
|
||||||
src/gui/RomImageWidget.o \
|
src/gui/RomImageWidget.o \
|
||||||
src/gui/RomInfoWidget.o \
|
src/gui/RomInfoWidget.o \
|
||||||
src/gui/RomImageWidget.o \
|
|
||||||
src/gui/ScrollBarWidget.o \
|
src/gui/ScrollBarWidget.o \
|
||||||
src/gui/SnapshotDialog.o \
|
src/gui/SnapshotDialog.o \
|
||||||
src/gui/StellaSettingsDialog.o \
|
src/gui/StellaSettingsDialog.o \
|
||||||
|
|
Loading…
Reference in New Issue