From fb5cd6603f9c8b5592ba2092161dad94787af25e Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 25 Feb 2020 20:29:33 -0600 Subject: [PATCH] [nostalgia/core/gba] Cleanup class/struct inconsistency --- src/nostalgia/core/gba/mem.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);