aboutsummaryrefslogtreecommitdiff
path: root/backends/symbian/src
diff options
context:
space:
mode:
Diffstat (limited to 'backends/symbian/src')
-rw-r--r--backends/symbian/src/ScummApp.cpp4
-rw-r--r--backends/symbian/src/ScummApp.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/backends/symbian/src/ScummApp.cpp b/backends/symbian/src/ScummApp.cpp
index 71cbb33887..f750e496fa 100644
--- a/backends/symbian/src/ScummApp.cpp
+++ b/backends/symbian/src/ScummApp.cpp
@@ -73,7 +73,7 @@ CApaApplication* NewApplication() {
return new CScummApp;
}
-#if defined (UIQ3) || defined (__SERIES60_30__)
+#if defined (UIQ3) || defined (S60V3)
#include <eikstart.h>
// E32Main() contains the program's start up code, the entry point for an EXE.
GLDEF_C TInt E32Main() {
@@ -83,7 +83,7 @@ GLDEF_C TInt E32Main() {
#endif // EPOC_AS_APP
-#if !defined (UIQ3) && !defined (__SERIES60_30__)
+#if !defined (UIQ3) && !defined (S60V3)
GLDEF_C TInt E32Dll(TDllReason) {
return KErrNone;
}
diff --git a/backends/symbian/src/ScummApp.h b/backends/symbian/src/ScummApp.h
index 56ca8b68c3..9b8fd47a1d 100644
--- a/backends/symbian/src/ScummApp.h
+++ b/backends/symbian/src/ScummApp.h
@@ -29,7 +29,7 @@
#include <e32base.h>
#include <sdlapp.h>
-#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__)
+#if defined (EPOC_AS_APP) && !defined (UIQ3) && !defined (S60V3)
#include "ECompXL.h"
#endif
@@ -39,7 +39,7 @@ public:
~CScummApp();
TUid AppDllUid() const;
-#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__)
+#if defined (EPOC_AS_APP) && !defined (UIQ3) && !defined (S60V3)
TECompXL iECompXL;
#endif
};