diff options
author | Max Horn | 2006-04-02 00:08:22 +0000 |
---|---|---|
committer | Max Horn | 2006-04-02 00:08:22 +0000 |
commit | 587431f8e838bd08d081d65f18b1f9b8f04566b8 (patch) | |
tree | b0d258b1c28ed19887de121773e723b966369e00 /backends/ps2 | |
parent | a2c4795f326e62fe8ff74ce0e29e0174d4dab330 (diff) | |
download | scummvm-rg350-587431f8e838bd08d081d65f18b1f9b8f04566b8.tar.gz scummvm-rg350-587431f8e838bd08d081d65f18b1f9b8f04566b8.tar.bz2 scummvm-rg350-587431f8e838bd08d081d65f18b1f9b8f04566b8.zip |
Fully and officially renamed our main function to scummvm_main, thus making
various backend specific hacks unnecessary. As a consequence, it is now the
responsibility of the backend to define main. Hence I adapted the SDL backend
accordingly.
svn-id: r21542
Diffstat (limited to 'backends/ps2')
-rw-r--r-- | backends/ps2/systemps2.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/ps2/systemps2.cpp b/backends/ps2/systemps2.cpp index 7262000986..d0154ab590 100644 --- a/backends/ps2/systemps2.cpp +++ b/backends/ps2/systemps2.cpp @@ -35,6 +35,7 @@ #include "common/scummsys.h" #include "../intern.h" #include "base/engine.h" +#include "base/main.h" #include "backends/ps2/systemps2.h" #include "backends/ps2/Gs2dScreen.h" #include "backends/ps2/ps2input.h" @@ -98,8 +99,6 @@ OSystem *OSystem_PS2_create(void) { return g_systemPs2; } -extern "C" int scummvm_main(int argc, char *argv[]); - extern "C" int main(int argc, char *argv[]) { SifInitRpc(0); #ifndef USE_PS2LINK // reset the IOP if this is a CD build |