diff --git a/src/nostalgia/core/gba/mem.cpp b/src/nostalgia/core/gba/mem.cpp index 563d4b12..46c0e531 100644 --- a/src/nostalgia/core/gba/mem.cpp +++ b/src/nostalgia/core/gba/mem.cpp @@ -23,9 +23,9 @@ namespace nostalgia::core { -static class HeapSegment *volatile g_heapBegin = nullptr; -static class HeapSegment *volatile g_heapEnd = nullptr; -static class HeapSegment *volatile heapIdx = nullptr; +static struct HeapSegment *volatile g_heapBegin = nullptr; +static struct HeapSegment *volatile g_heapEnd = nullptr; +static struct HeapSegment *volatile heapIdx = nullptr; static constexpr std::size_t alignedSize(std::size_t sz) { return sz + (sz & 7);