mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
dumb copypasta bug of the year.
This commit is contained in:
2
GPU.h
2
GPU.h
@ -328,7 +328,7 @@ T ReadVRAM_ARM7(u32 addr)
|
||||
template<typename T>
|
||||
void WriteVRAM_ARM7(u32 addr, T val)
|
||||
{
|
||||
u32 mask = VRAMMap_BOBJ[(addr >> 17) & 0x1];
|
||||
u32 mask = VRAMMap_ARM7[(addr >> 17) & 0x1];
|
||||
|
||||
if (mask & (1<<2)) *(T*)&VRAM_C[addr & 0x1FFFF] = val;
|
||||
if (mask & (1<<3)) *(T*)&VRAM_D[addr & 0x1FFFF] = val;
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
1481161027 c:\documents\sources\melonds\types.h
|
||||
|
||||
1488225095 source:c:\documents\sources\melonds\nds.cpp
|
||||
1488227258 source:c:\documents\sources\melonds\nds.cpp
|
||||
<stdio.h>
|
||||
<string.h>
|
||||
"NDS.h"
|
||||
@ -125,7 +125,7 @@
|
||||
"NDS.h"
|
||||
"GPU.h"
|
||||
|
||||
1488225864 c:\documents\sources\melonds\gpu.h
|
||||
1488227363 c:\documents\sources\melonds\gpu.h
|
||||
"GPU2D.h"
|
||||
"GPU3D.h"
|
||||
|
||||
|
Reference in New Issue
Block a user