From 2fce719309c3c08fa80b06e8511f3459e36fe6e8 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 30 Nov 2014 19:13:58 +0000 Subject: [PATCH] comments --- .../Consoles/Nintendo/GBA/IGBAGPUViewable.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/IGBAGPUViewable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/IGBAGPUViewable.cs index 5b02766743..8ba507fcbd 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/IGBAGPUViewable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/IGBAGPUViewable.cs @@ -18,6 +18,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public class GBAGPUMemoryAreas { + // the pointers are assumed to stay valid as long as the IEmulator is valid, maybe + // this will need some change for a managed core (lifecycle management, etc) + public IntPtr vram; public IntPtr oam; public IntPtr mmio;