mirror of https://github.com/stella-emu/stella.git
Fixed minor compile error in Linux.
This commit is contained in:
parent
21da4a6388
commit
8856789438
|
@ -176,7 +176,7 @@ UIDialog::UIDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
|
|
||||||
// Snapshot path (load files)
|
// Snapshot path (load files)
|
||||||
xpos = HBORDER + INDENT;
|
xpos = HBORDER + INDENT;
|
||||||
bwidth = font.getStringWidth("Image path" + ELLIPSIS) + 20 + 1,
|
bwidth = font.getStringWidth("Image path" + ELLIPSIS) + 20 + 1;
|
||||||
myOpenBrowserButton = new ButtonWidget(myTab, font, xpos, ypos, bwidth, buttonHeight,
|
myOpenBrowserButton = new ButtonWidget(myTab, font, xpos, ypos, bwidth, buttonHeight,
|
||||||
"Image path" + ELLIPSIS, kChooseSnapLoadDirCmd);
|
"Image path" + ELLIPSIS, kChooseSnapLoadDirCmd);
|
||||||
wid.push_back(myOpenBrowserButton);
|
wid.push_back(myOpenBrowserButton);
|
||||||
|
|
|
@ -8,7 +8,7 @@ MODULE_OBJS := \
|
||||||
src/gui/ColorWidget.o \
|
src/gui/ColorWidget.o \
|
||||||
src/gui/ComboDialog.o \
|
src/gui/ComboDialog.o \
|
||||||
src/gui/CommandDialog.o \
|
src/gui/CommandDialog.o \
|
||||||
src/gui/CommandMenu.o \
|
src/gui/CommandMenu.o \
|
||||||
src/gui/ContextMenu.o \
|
src/gui/ContextMenu.o \
|
||||||
src/gui/DeveloperDialog.o \
|
src/gui/DeveloperDialog.o \
|
||||||
src/gui/DialogContainer.o \
|
src/gui/DialogContainer.o \
|
||||||
|
|
Loading…
Reference in New Issue