Moved setTileData() into GdiPCEngine since that's the only class that uses it.

svn-id: r50888
This commit is contained in:
Torbjörn Andersson 2010-07-14 16:55:32 +00:00
parent 14e25d138c
commit 25077baf6a
2 changed files with 2 additions and 1 deletions

View File

@ -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;

View File

@ -322,6 +322,7 @@ protected:
protected:
void decodePCEngineGfx(const byte *room);
void decodeStrip(const byte *ptr, uint16 *tiles, byte *colors, uint16 *masks, int numRows, bool isObject);
void setTileData(byte *tile, int index, byte byte0, byte byte1);
void decodePCEngineTileData(const byte *ptr);
void decodePCEngineMaskData(const byte *ptr);
void decodePCEngineObject(const byte *ptr, int xpos, int ypos, int width, int height);