diff options
author | Max Horn | 2005-05-15 10:02:13 +0000 |
---|---|---|
committer | Max Horn | 2005-05-15 10:02:13 +0000 |
commit | e5bbfe8df9e3fb291d840a3cbcdc947185bfd3fa (patch) | |
tree | 39eec7a269a702635a1f5fe5709f4e273eddda00 /backends/PalmOS/Src/builder/scumm/bl_costume.c | |
parent | 75ffec581ff8eaf040bfc6292e034528923352e4 (diff) | |
download | scummvm-rg350-e5bbfe8df9e3fb291d840a3cbcdc947185bfd3fa.tar.gz scummvm-rg350-e5bbfe8df9e3fb291d840a3cbcdc947185bfd3fa.tar.bz2 scummvm-rg350-e5bbfe8df9e3fb291d840a3cbcdc947185bfd3fa.zip |
Renamed costume scale tables; merged the old costume renderer's scale table with the small scale AKOS scale table (they were identical)
svn-id: r18103
Diffstat (limited to 'backends/PalmOS/Src/builder/scumm/bl_costume.c')
-rw-r--r-- | backends/PalmOS/Src/builder/scumm/bl_costume.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/PalmOS/Src/builder/scumm/bl_costume.c b/backends/PalmOS/Src/builder/scumm/bl_costume.c index 84f5683a2e..1be7a5f7f8 100644 --- a/backends/PalmOS/Src/builder/scumm/bl_costume.c +++ b/backends/PalmOS/Src/builder/scumm/bl_costume.c @@ -2,8 +2,8 @@ #include "b_globals.h" -static void addCostume_cost_scaleTable() { - byte cost_scaleTable[256] = { +static void addCostume_smallCostumeScaleTable() { + byte smallCostumeScaleTable[256] = { 0xFF, 0xFD, 0x7D, 0xBD, 0x3D, 0xDD, 0x5D, 0x9D, 0x1D, 0xED, 0x6D, 0xAD, 0x2D, 0xCD, 0x4D, 0x8D, 0x0D, 0xF5, 0x75, 0xB5, 0x35, 0xD5, 0x55, 0x95, @@ -37,9 +37,9 @@ static void addCostume_cost_scaleTable() { 0x0E, 0x8E, 0x4E, 0xCE, 0x2E, 0xAE, 0x6E, 0xEE, 0x1E, 0x9E, 0x5E, 0xDE, 0x3E, 0xBE, 0x7E, 0xFE }; - writeRecord(cost_scaleTable, sizeof(cost_scaleTable), GBVARS_COSTSCALETABLE_INDEX , GBVARS_SCUMM); + writeRecord(smallCostumeScaleTable, sizeof(smallCostumeScaleTable), GBVARS_COSTSCALETABLE_INDEX , GBVARS_SCUMM); } void addCostume() { - addCostume_cost_scaleTable(); -}
\ No newline at end of file + addCostume_smallCostumeScaleTable(); +} |