diff options
author | Lars Persson | 2006-02-12 00:27:19 +0000 |
---|---|---|
committer | Lars Persson | 2006-02-12 00:27:19 +0000 |
commit | 37f433a7ad516df85cd62e32e1a178635212b047 (patch) | |
tree | 9128c436cc09d6bb2ab1031ee0aeb0c0a28dab5b /backends/epoc/src/portdefs.h | |
parent | 80cf2fa46ff638ae25fe85a3a89997ceb7f09aae (diff) | |
download | scummvm-rg350-37f433a7ad516df85cd62e32e1a178635212b047.tar.gz scummvm-rg350-37f433a7ad516df85cd62e32e1a178635212b047.tar.bz2 scummvm-rg350-37f433a7ad516df85cd62e32e1a178635212b047.zip |
* New and tested builds for S60V3 and UIQ3
* New upscaled icons for UIQ3/S60V3. SVG/Scalable version needed for S60V3 for proper good looks
* Critical bug in Symbian-fs fixed (exception for UIQ3/S60V3)
*Removed duplicate files for easier maintanence
*New handling for Symbian error messages, save paths etc
*All naming now is ScummVM for all apps and targets
svn-id: r20585
Diffstat (limited to 'backends/epoc/src/portdefs.h')
-rw-r--r-- | backends/epoc/src/portdefs.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/backends/epoc/src/portdefs.h b/backends/epoc/src/portdefs.h index a97d971d60..d84db8cdd9 100644 --- a/backends/epoc/src/portdefs.h +++ b/backends/epoc/src/portdefs.h @@ -34,8 +34,6 @@ #include <e32std.h> #include <math.h> -// the place in Symbian FS where scummvm.ini & std***.txt are saved -#define SYMBIAN32_DOC_DIR "C:\\documents\\ScummVM\\" // includes final \\! #define DISABLE_SCALERS // we only need 1x #if defined(USE_TREMOR) && !defined(USE_VORBIS) @@ -136,7 +134,8 @@ void inline *scumm_bsearch(const void *key, const void *base, size_t nmemb, size } #define bsearch scumm_bsearch -// make sure SymbianFatalError() @ SymbianOS.cpp is known in error() @ engine.cpp -extern void SymbianFatalError(const char *msg) ; - - +// we cannot include SymbianOS.h everywhere, but this works too (functions code is in SymbianOS.cpp) +namespace Symbian { +extern void FatalError(const char *msg); +extern char* GetExecutablePath(); +} |