diff options
| author | Max Horn | 2009-01-30 03:35:47 +0000 | 
|---|---|---|
| committer | Max Horn | 2009-01-30 03:35:47 +0000 | 
| commit | c69ebfd798777fa5db487fe321af274d26baaf3b (patch) | |
| tree | 799a2a0234e594abc7bc96c5ba1a646571bb06b6 /backends/platform/wii | |
| parent | 1d097d9791b99b78790d68133a4ecf07057a28e6 (diff) | |
| download | scummvm-rg350-c69ebfd798777fa5db487fe321af274d26baaf3b.tar.gz scummvm-rg350-c69ebfd798777fa5db487fe321af274d26baaf3b.tar.bz2 scummvm-rg350-c69ebfd798777fa5db487fe321af274d26baaf3b.zip  | |
Moved default implementations for various OSystem methods into a new class BaseBackend
svn-id: r36135
Diffstat (limited to 'backends/platform/wii')
| -rw-r--r-- | backends/platform/wii/osystem.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/wii/osystem.h b/backends/platform/wii/osystem.h index afc80e1bcd..1d97d5259a 100644 --- a/backends/platform/wii/osystem.h +++ b/backends/platform/wii/osystem.h @@ -23,11 +23,11 @@  #define _WII_OSYSTEM_H_  #include "base/main.h" -#include "common/system.h"  #include "common/fs.h"  #include "common/rect.h"  #include "common/events.h" +#include "backends/base-backend.h"  #include "backends/saves/default/default-saves.h"  #include "backends/timer/default/default-timer.h"  #include "graphics/colormasks.h" @@ -53,7 +53,7 @@ extern void wii_memstats(void);  }  #endif -class OSystem_Wii : public OSystem { +class OSystem_Wii : public BaseBackend {  private:  	s64 _startup_time;  	syswd_t _alarm;  | 
