From 151becc4fbfd4395e686290a0431cc70109dfbc7 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Wed, 31 Jul 2024 13:37:38 -0230 Subject: [PATCH] Fix compile error from last commit. --- src/emucore/CortexM0.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emucore/CortexM0.hxx b/src/emucore/CortexM0.hxx index 6efd6f214..d78706590 100644 --- a/src/emucore/CortexM0.hxx +++ b/src/emucore/CortexM0.hxx @@ -143,12 +143,12 @@ class CortexM0 }; struct MemoryRegionAccessData { - uInt8* backingStore{nullptr}; + uInt8* backingStore; }; struct MemoryRegionAccessCode { - uInt8* backingStore{nullptr}; - uInt8* ops{nullptr}; + uInt8* backingStore; + uInt8* ops; }; struct MemoryRegion {