diff options
author | John Willis | 2009-07-28 20:22:38 +0000 |
---|---|---|
committer | John Willis | 2009-07-28 20:22:38 +0000 |
commit | 972cbb4b579bb3767b118e666c761422e20b14b0 (patch) | |
tree | e1aaa23a45e4407516911ded8c396980c2604f77 /backends/platform/gp2x | |
parent | 7a6329a29bbe755250586693f8bb651fd3521e95 (diff) | |
download | scummvm-rg350-972cbb4b579bb3767b118e666c761422e20b14b0.tar.gz scummvm-rg350-972cbb4b579bb3767b118e666c761422e20b14b0.tar.bz2 scummvm-rg350-972cbb4b579bb3767b118e666c761422e20b14b0.zip |
GP2XWiz: Add downscale support to the backend using the PocketPCHalfARM scaler from the WinCE backend (Maybe this should be moved into /graphics/scalers at some point?). Also enable all the ARM optemised routines in this and the GP2X backend.
svn-id: r42863
Diffstat (limited to 'backends/platform/gp2x')
-rw-r--r-- | backends/platform/gp2x/gp2x-hw.cpp | 3 | ||||
-rw-r--r-- | backends/platform/gp2x/gp2x.cpp | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/gp2x/gp2x-hw.cpp b/backends/platform/gp2x/gp2x-hw.cpp index 9eb6b040c0..38799ea7ad 100644 --- a/backends/platform/gp2x/gp2x-hw.cpp +++ b/backends/platform/gp2x/gp2x-hw.cpp @@ -195,4 +195,5 @@ void gp2x_video_wait_vsync(void) while (!(MEM_REG[0x2846>>1] & 2)); } -} /* namespace GP2X_HW */
\ No newline at end of file +} /* namespace GP2X_HW */ + diff --git a/backends/platform/gp2x/gp2x.cpp b/backends/platform/gp2x/gp2x.cpp index 4752646083..3d416f8415 100644 --- a/backends/platform/gp2x/gp2x.cpp +++ b/backends/platform/gp2x/gp2x.cpp @@ -448,7 +448,6 @@ void OSystem_GP2X::quit() { if (_joystick) SDL_JoystickClose(_joystick); - //CloseRam(); GP2X_HW::deviceDeinit(); SDL_RemoveTimer(_timerID); |