diff options
| author | Andrew Kurushin | 2005-07-16 21:46:32 +0000 |
|---|---|---|
| committer | Andrew Kurushin | 2005-07-16 21:46:32 +0000 |
| commit | 090cbc45aee92de982fa2f37f1d405c061585888 (patch) | |
| tree | dfc16b60a63ee5b5b4bac2df638768404b308a6a | |
| parent | 545837b9031b7feea4af23f03cabf4e86c349859 (diff) | |
| download | scummvm-rg350-090cbc45aee92de982fa2f37f1d405c061585888.tar.gz scummvm-rg350-090cbc45aee92de982fa2f37f1d405c061585888.tar.bz2 scummvm-rg350-090cbc45aee92de982fa2f37f1d405c061585888.zip | |
fix Win32 demo font list
svn-id: r18549
| -rw-r--r-- | saga/game.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/saga/game.cpp b/saga/game.cpp index 74d299733c..fba3af5890 100644 --- a/saga/game.cpp +++ b/saga/game.cpp @@ -248,8 +248,8 @@ static GameFileDescription ITEMULTICD_GameFiles[] = { }; static GameFontDescription ITEWINDEMO_GameFonts[] = { - {0}, - {2} + {2}, + {0} }; // Inherit the Earth - Mac Wyrmkeep version @@ -660,7 +660,7 @@ static GameDescription gameDescriptions[] = { GF_VOX_VOICES | GF_WYRMKEEP | GF_CD_FX }, - // Inherit the earth - Linux Demo version + // Inherit the earth - Win32 Demo version { "ite-demo", GType_ITE, @@ -671,13 +671,13 @@ static GameDescription gameDescriptions[] = { &ITE_Resources, ARRAYSIZE(ITEWINDEMO_GameFiles), ITEWINDEMO_GameFiles, - ARRAYSIZE(ITECD_GameFonts), - ITECD_GameFonts, + ARRAYSIZE(ITEWINDEMO_GameFonts), + ITEWINDEMO_GameFonts, &ITECD_GameSound, GF_VOX_VOICES | GF_WYRMKEEP | GF_CD_FX }, - // Inherit the earth - Win32 Demo version + // Inherit the earth - early Win32 Demo version { "ite-demo", GType_ITE, |
