Moved (In/Out)SaveFile(Manager) and Timer to namespace Common
svn-id: r18038
This commit is contained in:
parent
b75c969e66
commit
72f4c03b0b
34 changed files with 132 additions and 101 deletions
|
@ -405,7 +405,7 @@ extern "C" int main(int argc, char *argv[]) {
|
|||
system.initBackend();
|
||||
|
||||
// Create the timer services
|
||||
g_timer = new Timer(&system);
|
||||
Common::g_timer = new Common::Timer(&system);
|
||||
|
||||
// Set initial window caption
|
||||
system.setWindowCaption(gScummVMFullVersion);
|
||||
|
@ -446,7 +446,7 @@ extern "C" int main(int argc, char *argv[]) {
|
|||
}
|
||||
|
||||
// ...and quit (the return 0 should never be reached)
|
||||
delete g_timer;
|
||||
delete Common::g_timer;
|
||||
system.quit();
|
||||
|
||||
error("If you are seeing this, your OSystem backend is not working properly");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue