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
This commit is contained in:
Lars Persson 2005-12-03 21:29:13 +00:00
parent 02f5921cbe
commit 6ed67205ec
54 changed files with 3307 additions and 58 deletions

View file

@ -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?