diff options
author | Chris Apers | 2003-11-03 16:21:19 +0000 |
---|---|---|
committer | Chris Apers | 2003-11-03 16:21:19 +0000 |
commit | feb0678801eef8f132492f02c581567a5340414a (patch) | |
tree | a93a01d6b051a43ea70d7617b2e3805feae2653e /backends | |
parent | a5e443a332738c16c74aedf78b483fb0165f6164 (diff) | |
download | scummvm-rg350-feb0678801eef8f132492f02c581567a5340414a.tar.gz scummvm-rg350-feb0678801eef8f132492f02c581567a5340414a.tar.bz2 scummvm-rg350-feb0678801eef8f132492f02c581567a5340414a.zip |
Read database only if it is opened
svn-id: r11103
Diffstat (limited to 'backends')
-rw-r--r-- | backends/PalmOS/Src/globals.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/PalmOS/Src/globals.h b/backends/PalmOS/Src/globals.h index bd3b137112..1589323cd7 100644 --- a/backends/PalmOS/Src/globals.h +++ b/backends/PalmOS/Src/globals.h @@ -24,6 +24,7 @@ #define GLOBALS_H #include <VFSMgr.h> +#include "scumm_globals.h" enum { optNone = 0, @@ -37,7 +38,7 @@ enum { }; typedef struct { - DmOpenRef globals[3]; + DmOpenRef globals[GBVARS_COUNT]; UInt32 options; |