diff options
author | Max Horn | 2011-06-08 14:29:22 +0200 |
---|---|---|
committer | Max Horn | 2011-06-08 14:29:22 +0200 |
commit | fce7f90a94165158ea93d5969d795ad5a565847c (patch) | |
tree | 7599877ec230f7d1b8af0b17846835a950d29410 /backends/platform/wii | |
parent | d670b4bb561bdb935c6e574df2ed1ac478375878 (diff) | |
download | scummvm-rg350-fce7f90a94165158ea93d5969d795ad5a565847c.tar.gz scummvm-rg350-fce7f90a94165158ea93d5969d795ad5a565847c.tar.bz2 scummvm-rg350-fce7f90a94165158ea93d5969d795ad5a565847c.zip |
BACKENDS: Shuffle backends class hierarchy and module initialization
Diffstat (limited to 'backends/platform/wii')
-rw-r--r-- | backends/platform/wii/osystem.cpp | 4 | ||||
-rw-r--r-- | backends/platform/wii/osystem.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp index a981c61aea..c6b23783b8 100644 --- a/backends/platform/wii/osystem.cpp +++ b/backends/platform/wii/osystem.cpp @@ -144,7 +144,7 @@ void OSystem_Wii::initBackend() { initSfx(); initEvents(); - BaseBackend::initBackend(); + EventsBaseBackend::initBackend(); } void OSystem_Wii::quit() { @@ -361,7 +361,7 @@ Common::String OSystem_Wii::getSystemLanguage() const { } else { // This will only happen when new languages are added to the API. warning("WII: Unknown system language: %d", langID); - return BaseBackend::getSystemLanguage(); + return EventsBaseBackend::getSystemLanguage(); } } #endif // !GAMECUBE diff --git a/backends/platform/wii/osystem.h b/backends/platform/wii/osystem.h index fe214a95cd..6863a6840e 100644 --- a/backends/platform/wii/osystem.h +++ b/backends/platform/wii/osystem.h @@ -52,7 +52,7 @@ extern void wii_memstats(void); } #endif -class OSystem_Wii : public BaseBackend, public PaletteManager { +class OSystem_Wii : public EventsBaseBackend, public PaletteManager { private: s64 _startup_time; |