aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2006-02-26 17:02:38 +0000
committerChris Apers2006-02-26 17:02:38 +0000
commit871fe237cc0a0a2227347f7d34c881c26a307d96 (patch)
tree465d7e1ac1b6e7a10220d973ee648646227edae7 /backends
parent121a93307397a5bd4b1847b477fa74d40a19bc13 (diff)
downloadscummvm-rg350-871fe237cc0a0a2227347f7d34c881c26a307d96.tar.gz
scummvm-rg350-871fe237cc0a0a2227347f7d34c881c26a307d96.tar.bz2
scummvm-rg350-871fe237cc0a0a2227347f7d34c881c26a307d96.zip
Fixed compilation, this is a 68k part only and will be updated as soon as the 68k backend is ready
svn-id: r20935
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/scumm_globals.cpp22
-rw-r--r--backends/PalmOS/Src/scumm_globals.h9
2 files changed, 18 insertions, 13 deletions
diff --git a/backends/PalmOS/Src/scumm_globals.cpp b/backends/PalmOS/Src/scumm_globals.cpp
index 5ea7083edf..8e65f1ee46 100644
--- a/backends/PalmOS/Src/scumm_globals.cpp
+++ b/backends/PalmOS/Src/scumm_globals.cpp
@@ -1,6 +1,6 @@
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
- * Copyright (C) 2001-2006 The ScummVM project
+ * Copyright (C) 2001-2005 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -14,10 +14,9 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * $URL$
- * $Id$
+ * $Header: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/scumm_globals.cpp,v 1.10 2005/01/01 16:08:45 fingolfin Exp $
*
*/
#include <PalmOS.h>
@@ -32,15 +31,18 @@ static void GlbInitAll() {
}
if (gVars->globals[GBVARS_ENGINE]) {
#ifndef DISABLE_SCUMM
+# ifndef DISABLE_SCUMM_7_8
CALL_INIT(DimuseTables)
- CALL_INIT(Akos)
CALL_INIT(DimuseCodecs)
CALL_INIT(Codec47)
+# endif
+ CALL_INIT(Akos)
CALL_INIT(Gfx)
CALL_INIT(Dialogs)
CALL_INIT(Charset)
CALL_INIT(Costume)
CALL_INIT(PlayerV2)
+ CALL_INIT(Scumm_md5table)
#endif
#ifndef DISABLE_SIMON
CALL_INIT(Simon_Simon)
@@ -66,18 +68,22 @@ static void GlbInitAll() {
static void GlbReleaseAll() {
if (gVars->globals[GBVARS_COMMON]) {
CALL_RELEASE(ScummFont)
+
}
if (gVars->globals[GBVARS_SCUMM]) {
#ifndef DISABLE_SCUMM
+# ifndef DISABLE_SCUMM_7_8
CALL_RELEASE(DimuseTables)
- CALL_RELEASE(Akos)
CALL_RELEASE(DimuseCodecs)
CALL_RELEASE(Codec47)
+# endif
+ CALL_RELEASE(Akos)
CALL_RELEASE(Gfx)
CALL_RELEASE(Dialogs)
CALL_RELEASE(Charset)
CALL_RELEASE(Costume)
CALL_RELEASE(PlayerV2)
+ CALL_RELEASE(Scumm_md5table)
#endif
#ifndef DISABLE_SIMON
CALL_RELEASE(Simon_Simon)
@@ -114,8 +120,8 @@ static DmOpenRef GlbOpenInternal(const Char *nameP) {
}
void GlbOpen() {
- gVars->globals[GBVARS_COMMON]= GlbOpenInternal("Glbs::Common");
- gVars->globals[GBVARS_SCUMM] = GlbOpenInternal("Glbs::Engine");
+ gVars->globals[GBVARS_COMMON] = GlbOpenInternal("Glbs::Common");
+ gVars->globals[GBVARS_ENGINE] = GlbOpenInternal("Glbs::Engine");
GlbInitAll();
}
diff --git a/backends/PalmOS/Src/scumm_globals.h b/backends/PalmOS/Src/scumm_globals.h
index 2d68c7184b..74952bfeed 100644
--- a/backends/PalmOS/Src/scumm_globals.h
+++ b/backends/PalmOS/Src/scumm_globals.h
@@ -1,6 +1,6 @@
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
- * Copyright (C) 2001-2006 The ScummVM project
+ * Copyright (C) 2001-2005 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -14,10 +14,9 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * $URL$
- * $Id$
+ * $Header: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/scumm_globals.h,v 1.15 2005/01/01 16:08:45 fingolfin Exp $
*
*/
@@ -48,7 +47,6 @@ void GlbClose();
// Common stuffs
PROTO_GLOBALS(ScummFont)
-PROTO_GLOBALS(NewFont)
// Scumm stuffs
#ifndef DISABLE_SCUMM
@@ -61,6 +59,7 @@ PROTO_GLOBALS(Dialogs)
PROTO_GLOBALS(Charset)
PROTO_GLOBALS(Costume)
PROTO_GLOBALS(PlayerV2)
+PROTO_GLOBALS(Scumm_md5table)
#endif
// Simon stuffs
#ifndef DISABLE_SIMON