diff options
author | Chris Apers | 2004-04-16 12:12:37 +0000 |
---|---|---|
committer | Chris Apers | 2004-04-16 12:12:37 +0000 |
commit | 9c55e7247c34419ab34c95225cc38553d87d5bef (patch) | |
tree | 95c5e27c79b65fe6505716e5c020e50492e36ee6 /graphics | |
parent | e398103f5896bf3ad1a8f97053caffa5cddf1f54 (diff) | |
download | scummvm-rg350-9c55e7247c34419ab34c95225cc38553d87d5bef.tar.gz scummvm-rg350-9c55e7247c34419ab34c95225cc38553d87d5bef.tar.bz2 scummvm-rg350-9c55e7247c34419ab34c95225cc38553d87d5bef.zip |
Rename this function and associate data with COMMON file
svn-id: r13587
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/scummfont.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/graphics/scummfont.cpp b/graphics/scummfont.cpp index e6df7e68ba..1b41bad8ee 100644 --- a/graphics/scummfont.cpp +++ b/graphics/scummfont.cpp @@ -97,16 +97,12 @@ const ScummFont g_scummfont; #ifdef __PALM_OS__ #include "scumm_globals.h" -_GINIT(NewGui) -#ifndef NEW_FONT_CODE -_GSETPTR(Graphics::guifont, GBVARS_GUIFONT_INDEX, byte, GBVARS_SCUMM) -#endif +_GINIT(ScummFont) +_GSETPTR(Graphics::guifont, GBVARS_GUIFONT_INDEX, byte, GBVARS_COMMON) _GEND -_GRELEASE(NewGui) -#ifndef NEW_FONT_CODE -_GRELEASEPTR(GBVARS_GUIFONT_INDEX, GBVARS_SCUMM) -#endif +_GRELEASE(ScummFont) +_GRELEASEPTR(GBVARS_GUIFONT_INDEX, GBVARS_COMMON) _GEND #endif |