housekeeping

This commit is contained in:
scawful
2023-03-28 12:25:56 -05:00
parent d41c3ca81a
commit 85c14438f3
6 changed files with 32 additions and 16 deletions

View File

@@ -26,7 +26,6 @@ class Controller {
absl::Status onEntry();
void onInput();
void onLoad();
void onLoadDelta();
void doRender() const;
void onExit() const;

View File

@@ -34,6 +34,8 @@ class TileInfo {
vertical_mirror_(v),
horizontal_mirror_(h),
palette_(palette) {}
// TODO(scawful): This is not the actual value yet.
ushort ToShort() const { return id_; }
};
TileInfo GetTilesInfo(ushort tile);

View File

@@ -103,8 +103,7 @@ class Room {
DungeonDestination Stair4;
int RoomID = 0;
int MessageID = 0;
ushort MessageID;
ushort MessageID = 0;
uchar BackgroundTileset;
uchar SpriteTileset;
uchar Layer2Behavior;

View File

@@ -240,7 +240,6 @@ class Tracker {
size_t t_number;
// Song *songs[128];
std::vector<Song> songs;
SongPart *sp_mark;
SongRange *song_range_;
@@ -251,8 +250,6 @@ class Tracker {
ZeldaWave *waves;
ZeldaInstrument *insts;
ZeldaSfxInstrument *sndinsts;
// HWND mbanks[4]; // ???
// HWND t_wnd;
};
// =============================================================================