[nostalgia/core/gba] Cleanup class/struct inconsistency

This commit is contained in:
Gary Talent 2020-02-25 20:29:33 -06:00
parent 4fa431c10b
commit fb5cd6603f

View File

@ -23,9 +23,9 @@
namespace nostalgia::core { namespace nostalgia::core {
static class HeapSegment *volatile g_heapBegin = nullptr; static struct HeapSegment *volatile g_heapBegin = nullptr;
static class HeapSegment *volatile g_heapEnd = nullptr; static struct HeapSegment *volatile g_heapEnd = nullptr;
static class HeapSegment *volatile heapIdx = nullptr; static struct HeapSegment *volatile heapIdx = nullptr;
static constexpr std::size_t alignedSize(std::size_t sz) { static constexpr std::size_t alignedSize(std::size_t sz) {
return sz + (sz & 7); return sz + (sz & 7);