mirror of https://github.com/stella-emu/stella.git
Fix compile error from last commit.
This commit is contained in:
parent
a4b216aac1
commit
9679d63bfc
|
@ -143,12 +143,12 @@ class CortexM0
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MemoryRegionAccessData {
|
struct MemoryRegionAccessData {
|
||||||
uInt8* backingStore{nullptr};
|
uInt8* backingStore;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MemoryRegionAccessCode {
|
struct MemoryRegionAccessCode {
|
||||||
uInt8* backingStore{nullptr};
|
uInt8* backingStore;
|
||||||
uInt8* ops{nullptr};
|
uInt8* ops;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MemoryRegion {
|
struct MemoryRegion {
|
||||||
|
|
Loading…
Reference in New Issue