aboutsummaryrefslogtreecommitdiff
path: root/GPU.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'GPU.cpp')
-rw-r--r--GPU.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/GPU.cpp b/GPU.cpp
index b5db5cb..a945b3f 100644
--- a/GPU.cpp
+++ b/GPU.cpp
@@ -62,7 +62,7 @@ u8* VRAM_AOBJExtPal;
u8* VRAM_BBGExtPal[4];
u8* VRAM_BOBJExtPal;
-u16 Framebuffer[256*192*2];
+u32 Framebuffer[256*192*2];
GPU2D* GPU2D_A;
GPU2D* GPU2D_B;
@@ -123,7 +123,7 @@ void Reset()
for (int i = 0; i < 256*192*2; i++)
{
- Framebuffer[i] = 0x7FFF;
+ Framebuffer[i] = 0xFFFFFFFF;
}
GPU2D_A->Reset();