aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/gfx.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2010-07-14 16:55:32 +0000
committerTorbjörn Andersson2010-07-14 16:55:32 +0000
commit25077baf6a665e56806bf6f7d050d6462d39ec5b (patch)
treee509645e367bc48bb39fb071eb9de111e31c19c3 /engines/scumm/gfx.cpp
parent14e25d138c20060067d0986eeeaf20d912ada0e6 (diff)
downloadscummvm-rg350-25077baf6a665e56806bf6f7d050d6462d39ec5b.tar.gz
scummvm-rg350-25077baf6a665e56806bf6f7d050d6462d39ec5b.tar.bz2
scummvm-rg350-25077baf6a665e56806bf6f7d050d6462d39ec5b.zip
Moved setTileData() into GdiPCEngine since that's the only class that uses it.
svn-id: r50888
Diffstat (limited to 'engines/scumm/gfx.cpp')
-rw-r--r--engines/scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp
index 298917477f..44e41feb9f 100644
--- a/engines/scumm/gfx.cpp
+++ b/engines/scumm/gfx.cpp
@@ -2823,7 +2823,7 @@ void GdiPCEngine::decodePCEngineObject(const byte *ptr, int xpos, int ypos, int
free(stripOffsets);
}
-void setTileData(byte *tile, int index, byte byte0, byte byte1) {
+void GdiPCEngine::setTileData(byte *tile, int index, byte byte0, byte byte1) {
int row = index % 8;
int plane = (index / 8) * 2;
int plane02Bit, plane13Bit;