mirror of https://github.com/stella-emu/stella.git
Fixed compile errors in gcc/clang.
This commit is contained in:
parent
486d95d951
commit
17f88515a7
|
@ -449,7 +449,7 @@ bool Debugger::rewindState()
|
||||||
mySystem.clearDirtyPages();
|
mySystem.clearDirtyPages();
|
||||||
|
|
||||||
unlockBankswitchState();
|
unlockBankswitchState();
|
||||||
bool result = r.rewindEmulationState();
|
bool result = r.rewindState();
|
||||||
lockBankswitchState();
|
lockBankswitchState();
|
||||||
|
|
||||||
myDialog->rewindButton().setEnabled(!r.empty());
|
myDialog->rewindButton().setEnabled(!r.empty());
|
||||||
|
|
|
@ -95,8 +95,8 @@ class GuiObject : public CommandReceiver
|
||||||
/** Redraw the focus list */
|
/** Redraw the focus list */
|
||||||
virtual void redrawFocus() { }
|
virtual void redrawFocus() { }
|
||||||
|
|
||||||
/** special character for menues */
|
/** Special character for menues */
|
||||||
const string& ELLIPSIS = "\x1d";
|
const string ELLIPSIS = "\x1d";
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void releaseFocus() = 0;
|
virtual void releaseFocus() = 0;
|
||||||
|
|
Loading…
Reference in New Issue