diff options
author | Max Horn | 2005-05-10 23:17:38 +0000 |
---|---|---|
committer | Max Horn | 2005-05-10 23:17:38 +0000 |
commit | 72f4c03b0b9a6918a359b967ebc400a2701981d9 (patch) | |
tree | 6686cad5726244b7d9d3a4adddde8dea92ce7843 /simon | |
parent | b75c969e666b9f262a05e0d1e54d56f7d3e45441 (diff) | |
download | scummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.tar.gz scummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.tar.bz2 scummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.zip |
Moved (In/Out)SaveFile(Manager) and Timer to namespace Common
svn-id: r18038
Diffstat (limited to 'simon')
-rw-r--r-- | simon/saveload.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/simon/saveload.cpp b/simon/saveload.cpp index f55f7d2fe8..b4cb94f104 100644 --- a/simon/saveload.cpp +++ b/simon/saveload.cpp @@ -41,7 +41,7 @@ void SimonEngine::o_load_game() { } int SimonEngine::count_savegames() { - InSaveFile *f; + Common::InSaveFile *f; uint i = 1; bool marks[256]; @@ -62,7 +62,7 @@ int SimonEngine::count_savegames() { int SimonEngine::display_savegame_list(int curpos, bool load, char *dst) { int slot, last_slot; - InSaveFile *in; + Common::InSaveFile *in; showMessageFormat("\xC"); @@ -400,7 +400,7 @@ loop:; } bool SimonEngine::save_game(uint slot, char *caption) { - OutSaveFile *f; + Common::OutSaveFile *f; uint item_index, num_item, i, j; TimeEvent *te; @@ -497,7 +497,7 @@ char *SimonEngine::gen_savename(int slot) { bool SimonEngine::load_game(uint slot) { char ident[18]; - InSaveFile *f; + Common::InSaveFile *f; uint num, item_index, i, j; _lockWord |= 0x100; |