aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian/src/SymbianOS.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/symbian/src/SymbianOS.cpp')
-rw-r--r--backends/platform/symbian/src/SymbianOS.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp
index 101b216493..ead85a933e 100644
--- a/backends/platform/symbian/src/SymbianOS.cpp
+++ b/backends/platform/symbian/src/SymbianOS.cpp
@@ -178,31 +178,6 @@ RFs& OSystem_SDL_Symbian::FsSession() {
return *_RFs;
}
-void OSystem_SDL_Symbian::initSize(uint w, uint h, const Graphics::PixelFormat *format ) {
- if(w != 640 && w != 320) {
- if(w > 320) {
- w = 640;
- }
- else {
- w = 320;
- }
- }
-
- if(h != 480 && h != 400 && h != 240 && h != 200) {
- if(h > 400) {
- h = 480;
- } else if(h > 240){
- h = 400;
- } else if(h > 200) {
- h = 240;
- } else {
- h = 200;
- }
- }
-
- ModularBackend::initSize(w, h, format);
-}
-
// Symbian bsearch implementation is flawed
void* scumm_bsearch(const void *key, const void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {
// Perform binary search