aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian/src/SymbianOS.cpp
diff options
context:
space:
mode:
authorLars Persson2007-03-03 18:36:05 +0000
committerLars Persson2007-03-03 18:36:05 +0000
commit5cee9799f1f0684ac0947be7a1747021435148ba (patch)
treeb312abecc36d70ea7f3c019be737ef78299d8de9 /backends/platform/symbian/src/SymbianOS.cpp
parent4ec8c6ca4378a4148969b6004d8f950d848a31a3 (diff)
downloadscummvm-rg350-5cee9799f1f0684ac0947be7a1747021435148ba.tar.gz
scummvm-rg350-5cee9799f1f0684ac0947be7a1747021435148ba.tar.bz2
scummvm-rg350-5cee9799f1f0684ac0947be7a1747021435148ba.zip
Updated Icons for UIQ3 and updated #defs and fix for scalers.
svn-id: r25953
Diffstat (limited to 'backends/platform/symbian/src/SymbianOS.cpp')
-rw-r--r--backends/platform/symbian/src/SymbianOS.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp
index 38ab872ae5..3e615e4cc8 100644
--- a/backends/platform/symbian/src/SymbianOS.cpp
+++ b/backends/platform/symbian/src/SymbianOS.cpp
@@ -136,27 +136,6 @@ void OSystem_SDL_Symbian::quitWithErrorMsg(const char *msg) {
g_system->quit();
}
-/*
- * SumthinWicked says: the stuff below is copied from common/scaler.cpp,
- * so we can skip compiling the scalers. ESDL still needs 1x and the scaler
- * architecture because we inherit from OSystem_SDL.
- */
-int gBitFormat = 565;
-void InitScalers(uint32 /*BitFormat*/) {} // called by OSystem_SDL functions, not relevant for ESDL
-
-/**
- * Trivial 'scaler' - in fact it doesn't do any scaling but just copies the
- * source to the destination.
- */
-void Normal1x(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch,
- int width, int height) {
- while (height--) {
- memcpy(dstPtr, srcPtr, 2 * width);
- srcPtr += srcPitch;
- dstPtr += dstPitch;
- }
-}
-
// Overloaded from SDL_Commmon
void OSystem_SDL_Symbian::quit() {
delete GUI_Actions::Instance();