diff options
author | Lars Persson | 2007-03-03 18:36:05 +0000 |
---|---|---|
committer | Lars Persson | 2007-03-03 18:36:05 +0000 |
commit | 5cee9799f1f0684ac0947be7a1747021435148ba (patch) | |
tree | b312abecc36d70ea7f3c019be737ef78299d8de9 /backends/platform/symbian/src | |
parent | 4ec8c6ca4378a4148969b6004d8f950d848a31a3 (diff) | |
download | scummvm-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')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 21 | ||||
-rw-r--r-- | backends/platform/symbian/src/portdefs.h | 1 |
2 files changed, 1 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(); diff --git a/backends/platform/symbian/src/portdefs.h b/backends/platform/symbian/src/portdefs.h index 4afdf33fb9..906b6317d3 100644 --- a/backends/platform/symbian/src/portdefs.h +++ b/backends/platform/symbian/src/portdefs.h @@ -36,6 +36,7 @@ #include <math.h> #define DISABLE_SCALERS // we only need 1x +#define DISABLE_HQ_SCALERS #if defined(USE_TREMOR) && !defined(USE_VORBIS) #define USE_VORBIS // make sure this one is defined together with USE_TREMOR! |