mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
Moved setTileData() into GdiPCEngine since that's the only class that uses it.
svn-id: r50888
This commit is contained in:
parent
14e25d138c
commit
25077baf6a
@ -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;
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user