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();
|
||||
|
||||
unlockBankswitchState();
|
||||
bool result = r.rewindEmulationState();
|
||||
bool result = r.rewindState();
|
||||
lockBankswitchState();
|
||||
|
||||
myDialog->rewindButton().setEnabled(!r.empty());
|
||||
|
|
|
@ -95,8 +95,8 @@ class GuiObject : public CommandReceiver
|
|||
/** Redraw the focus list */
|
||||
virtual void redrawFocus() { }
|
||||
|
||||
/** special character for menues */
|
||||
const string& ELLIPSIS = "\x1d";
|
||||
/** Special character for menues */
|
||||
const string ELLIPSIS = "\x1d";
|
||||
|
||||
protected:
|
||||
virtual void releaseFocus() = 0;
|
||||
|
|
Loading…
Reference in New Issue