diff options
author | Johannes Schickel | 2009-04-04 13:19:33 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-04-04 13:19:33 +0000 |
commit | bff93a38aea26cdc2eb1b5b343443f52bfa7f278 (patch) | |
tree | e3b35a3e052d9e745b18b71df31d25aedfb2d10e /engines/kyra | |
parent | 942dd9b84573df0ef750b61481fb51b0d613a08c (diff) | |
download | scummvm-rg350-bff93a38aea26cdc2eb1b5b343443f52bfa7f278.tar.gz scummvm-rg350-bff93a38aea26cdc2eb1b5b343443f52bfa7f278.tar.bz2 scummvm-rg350-bff93a38aea26cdc2eb1b5b343443f52bfa7f278.zip |
Formatting.
svn-id: r39839
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/lol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index 18d24569f6..3eea582229 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -2124,7 +2124,7 @@ bool LoLEngine::updateAutoMapIntern(uint16 block, uint16 x, uint16 y, int16 xOff } void LoLEngine::loadMapLegendData(int level) { - uint16 *legendData= (uint16*) _tempBuffer5120; + uint16 *legendData = (uint16 *)_tempBuffer5120; for (int i = 0; i < 32; i++) { legendData[i * 6] = 0xffff; legendData[i * 6 + 5] = 0xffff; @@ -2227,7 +2227,7 @@ void LoLEngine::drawMapPage(int pageNum) { sx = mapGetStartPosX(); sy = mapGetStartPosY(); - uint16 *legendData = (uint16*)_tempBuffer5120; + uint16 *legendData = (uint16 *)_tempBuffer5120; for (int ii = 0; ii < 32; ii++) { uint16 *l = &legendData[ii * 6]; |