aboutsummaryrefslogtreecommitdiff
path: root/base/engine.cpp
diff options
context:
space:
mode:
authorLars Persson2005-12-03 21:29:13 +0000
committerLars Persson2005-12-03 21:29:13 +0000
commit6ed67205ec31305ad19f2e4469de27e7a93c51e8 (patch)
treed32eeffc50c1a9a4d6d3db6c29e1f1774d441f63 /base/engine.cpp
parent02f5921cbeca2352df9fa84628d3e835df15cc2a (diff)
downloadscummvm-rg350-6ed67205ec31305ad19f2e4469de27e7a93c51e8.tar.gz
scummvm-rg350-6ed67205ec31305ad19f2e4469de27e7a93c51e8.tar.bz2
scummvm-rg350-6ed67205ec31305ad19f2e4469de27e7a93c51e8.zip
1. New build structure for Symbian builds to allow easier build and project updates
2. Updated framework files for new structure 3. Uncommented Debug statements in vorbis.cpp (Should probably be removed alltogether. 4. Incorporated Sevs code formatting changes in the new Symbian source structure. 5. Removed/Changed EScummVM to ScummVM instead, hopefully most cases covered. 6. Beginning vibration support to be used for Scumm shake effects (Work ongoing by SumthinWicked) 7. Replaced the ScummVM icon for the FavIcon and upscaled the icon to 32x32. I think it looks ok, comments are welcome. 8. Built for S60V1 and UIQ2 targets from the cvs 9. Updated Readme with new build instructions. Any comments are welcome. Hopefully the other builds are not affected by this and all Sevs code updates are also incorporated. svn-id: r19739
Diffstat (limited to 'base/engine.cpp')
-rw-r--r--base/engine.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/base/engine.cpp b/base/engine.cpp
index 5e2d1289cb..aa029ab6d9 100644
--- a/base/engine.cpp
+++ b/base/engine.cpp
@@ -191,6 +191,9 @@ void NORETURN CDECL error(const char *s, ...) {
PalmFatalError(buf_output);
#endif
+#ifdef __SYMBIAN32__
+ SymbianFatalError(buf_output);
+#endif
// Finally exit. quit() will terminate the program if g_system iss present
if (g_system)
g_system->quit();
@@ -203,11 +206,7 @@ void CDECL warning(const char *s, ...) {
va_list va;
va_start(va, s);
-#ifdef __SYMBIAN32__
- vsprintf(buf, s, va);
-#else
vsnprintf(buf, STRINGBUFLEN, s, va);
-#endif
va_end(va);
#ifdef __GP32__ //ph0x FIXME: implement fprint?