mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
GLK: COMPREHEND: Added missing override keywords
This commit is contained in:
parent
ee7abe78f4
commit
b9b3ba3285
@ -46,7 +46,7 @@ public:
|
||||
virtual byte getOpcode(const Instruction *instr) {
|
||||
return instr->_opcode;
|
||||
}
|
||||
virtual ScriptOpcode getScriptOpcode(const Instruction *instr) {
|
||||
virtual ScriptOpcode getScriptOpcode(const Instruction *instr) override {
|
||||
return _opcodeMap[getOpcode(instr)];
|
||||
}
|
||||
};
|
||||
|
@ -74,7 +74,7 @@ public:
|
||||
/**
|
||||
* Indicates whether an autosave can currently be saved.
|
||||
*/
|
||||
virtual bool canSaveAutosaveCurrently() {
|
||||
virtual bool canSaveAutosaveCurrently() override {
|
||||
/* ZCode saves also include the execution stack.
|
||||
* So I don't know how to do autosaves in the background
|
||||
* without ending up with an invalid stack state
|
||||
|
Loading…
Reference in New Issue
Block a user