diff options
author | Chris Apers | 2004-09-12 11:10:31 +0000 |
---|---|---|
committer | Chris Apers | 2004-09-12 11:10:31 +0000 |
commit | 19e17b1c93e4962bee1f108c179de12dedb887c3 (patch) | |
tree | 90ab0588e7d6d04128c6c139475dac7232effe49 | |
parent | 7988660bda736b567710b348e38ee0b7144ab5d5 (diff) | |
download | scummvm-rg350-19e17b1c93e4962bee1f108c179de12dedb887c3.tar.gz scummvm-rg350-19e17b1c93e4962bee1f108c179de12dedb887c3.tar.bz2 scummvm-rg350-19e17b1c93e4962bee1f108c179de12dedb887c3.zip |
Fixed russian support
svn-id: r15027
-rw-r--r-- | simon/charset.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/simon/charset.cpp b/simon/charset.cpp index 0f8156445b..bb34a8bbe3 100644 --- a/simon/charset.cpp +++ b/simon/charset.cpp @@ -1140,6 +1140,7 @@ void SimonEngine::video_putchar_drawchar(FillOrCopyStruct *fcs, uint x, uint y, #include "scumm_globals.h" _GINIT(Simon_Charset) +_GSETPTR(Simon::russian_video_font, GBVARS_RUSSIANVIDEOFONT_INDEX, byte, GBVARS_SIMON) _GSETPTR(Simon::french_video_font, GBVARS_FRENCHVIDEOFONT_INDEX, byte, GBVARS_SIMON) _GSETPTR(Simon::german_video_font, GBVARS_GERMANVIDEOFONT_INDEX, byte, GBVARS_SIMON) _GSETPTR(Simon::hebrew_video_font, GBVARS_HEBREWVIDEOFONT_INDEX, byte, GBVARS_SIMON) @@ -1149,6 +1150,7 @@ _GSETPTR(Simon::video_font, GBVARS_VIDEOFONT_INDEX, byte, GBVARS_SIMON) _GEND _GRELEASE(Simon_Charset) +_GRELEASEPTR(GBVARS_RUSSIANVIDEOFONT_INDEX, GBVARS_SIMON) _GRELEASEPTR(GBVARS_FRENCHVIDEOFONT_INDEX, GBVARS_SIMON) _GRELEASEPTR(GBVARS_GERMANVIDEOFONT_INDEX, GBVARS_SIMON) _GRELEASEPTR(GBVARS_HEBREWVIDEOFONT_INDEX, GBVARS_SIMON) |