Refactor GfxContext references to use gfx::GfxContext for consistency

This commit is contained in:
scawful
2024-12-30 19:04:20 -05:00
parent 618c33f2e8
commit 96095969c6
4 changed files with 4 additions and 6 deletions

View File

@@ -57,7 +57,7 @@ constexpr int OverworldCustomTileGFXGroupEnabled = 0x140148;
/**
* @brief Represents a single Overworld map screen.
*/
class OverworldMap : public GfxContext {
class OverworldMap : public gfx::GfxContext {
public:
OverworldMap() = default;
OverworldMap(int index, Rom& rom, bool load_custom_data = false);