diff options
Diffstat (limited to 'src/frontend/mame/cheat.h')
-rw-r--r-- | src/frontend/mame/cheat.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frontend/mame/cheat.h b/src/frontend/mame/cheat.h index b8f3e89a4e5..820cd8dcd7f 100644 --- a/src/frontend/mame/cheat.h +++ b/src/frontend/mame/cheat.h @@ -102,7 +102,7 @@ public: bool set_next_state(); // actions - void save(emu_file &cheatfile) const; + void save(util::core_file &cheatfile) const; private: // a single item in a parameter item list @@ -160,7 +160,7 @@ public: // actions void execute(cheat_manager &manager, uint64_t &argindex); - void save(emu_file &cheatfile) const; + void save(util::core_file &cheatfile) const; private: // an entry within the script @@ -177,7 +177,7 @@ private: // actions void execute(cheat_manager &manager, uint64_t &argindex); - void save(emu_file &cheatfile) const; + void save(util::core_file &cheatfile) const; private: // an argument for output @@ -196,7 +196,7 @@ private: int values(uint64_t &argindex, uint64_t *result); // actions - void save(emu_file &cheatfile) const; + void save(util::core_file &cheatfile) const; private: // internal state @@ -267,7 +267,7 @@ public: bool select_default_state(); bool select_previous_state(); bool select_next_state(); - void save(emu_file &cheatfile) const; + void save(util::core_file &cheatfile) const; // UI helpers void menu_text(std::string &description, std::string &state, uint32_t &flags); |