Remove rom namespace

This commit is contained in:
scawful
2022-07-09 22:52:07 -04:00
parent 31f1850800
commit 982cc789fe
10 changed files with 18 additions and 21 deletions

View File

@@ -19,7 +19,7 @@ namespace zelda3 {
class Overworld {
public:
void Load(app::rom::ROM& rom, uchar* allGfxPtr);
void Load(ROM& rom, uchar* allGfxPtr);
auto GetTiles16() const { return tiles16; }
auto GetCurrentGfxSetPtr() { return currentOWgfx16Ptr; }
auto GetMapBlockset16Ptr() { return mapblockset16; }
@@ -35,7 +35,7 @@ class Overworld {
void FetchLargeMaps();
void LoadOverworldMap();
app::rom::ROM rom_;
ROM rom_;
int gameState = 1;
bool isLoaded = false;
uchar mapParent[160];