Skip to content

Commit

Permalink
Update Memory.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 authored Sep 24, 2023
1 parent 320b897 commit bcf9b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSEMU/Memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Memory {
if (address < memory.size()) {
return memory[address];
} else if (address >= GPU_VRAM_START && address <= GPU_VRAM_END) {
return gpu[address - GPU_VRAM_START];
return gpu.gpuVRAM[address - GPU_VRAM_START];
} else {
Logging console;
console.err(54);
Expand Down

0 comments on commit bcf9b4f

Please sign in to comment.