From 7c3588ec2a74aa75e3e1a06849b751b3c203d42a Mon Sep 17 00:00:00 2001
From: anotherguest
Date: Mon, 25 Nov 2013 16:43:11 +0100
Subject: SYMBIAN OS:Added new engines, updated resolution support. Version
 number changes

---
 backends/platform/symbian/src/SymbianOS.cpp | 30 +++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

(limited to 'backends/platform/symbian/src/SymbianOS.cpp')

diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp
index b1bd976f9e..101b216493 100644
--- a/backends/platform/symbian/src/SymbianOS.cpp
+++ b/backends/platform/symbian/src/SymbianOS.cpp
@@ -178,6 +178,31 @@ 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
@@ -197,3 +222,8 @@ void* scumm_bsearch(const void *key, const void *base, size_t nmemb, size_t size
 
 	return NULL;
 }
+
+int remove(const char *path)
+{
+	return unlink(path);
+}
-- 
cgit v1.2.3


From f4137df940c1f0532742f2eb1894db2947944f66 Mon Sep 17 00:00:00 2001
From: anotherguest
Date: Tue, 26 Nov 2013 10:39:46 +0100
Subject: SYMBIAN OS:Removed resolution fix from Symbian OS Backend, handle
 this in SDL backend instead. Add more engines for the split build.

---
 backends/platform/symbian/src/SymbianOS.cpp | 25 -------------------------
 1 file changed, 25 deletions(-)

(limited to 'backends/platform/symbian/src/SymbianOS.cpp')

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
-- 
cgit v1.2.3