diff --git a/misc/symbian/ClassiCube.pkg b/misc/symbian/ClassiCube.pkg index d2c1e7201..8b3f46a25 100644 --- a/misc/symbian/ClassiCube.pkg +++ b/misc/symbian/ClassiCube.pkg @@ -10,7 +10,7 @@ :"ClassiCube" ; Check OpenC versions -IF( version(0x20009a80, <, 1, 5, 0) ) AND NOT (EXISTS("Z:\sys\bin\libc.dll") OR EXISTS("C:\sys\bin\libc.dll")) +IF version(0x20009a80, <, 1, 5, 0) AND NOT EXISTS("C:\sys\bin\libc.dll") "incompatible_openc.txt"-"", FT, FORCEABORT ENDIF diff --git a/src/Platform_Symbian.cpp b/src/Platform_Symbian.cpp index b43805e10..0648022fb 100644 --- a/src/Platform_Symbian.cpp +++ b/src/Platform_Symbian.cpp @@ -51,7 +51,7 @@ const cc_result ReturnCode_SocketWouldBlock = EWOULDBLOCK; const cc_result ReturnCode_SocketDropped = EPIPE; #define SUPPORTS_GETADDRINFO 1 -const char* Platform_AppNameSuffix = ""; +const char* Platform_AppNameSuffix = " Symbian"; cc_uint8 Platform_Flags = PLAT_FLAG_SINGLE_PROCESS | PLAT_FLAG_APP_EXIT; cc_bool Platform_ReadonlyFilesystem;