From e9217722f15f2286aa88cc1133f993eb4a2d0a46 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Mon, 2 Jan 2023 15:01:46 +0200 Subject: [PATCH] oops --- src/core/PICA/gpu.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/PICA/gpu.cpp b/src/core/PICA/gpu.cpp index 0b7ad3d3..c9e22190 100644 --- a/src/core/PICA/gpu.cpp +++ b/src/core/PICA/gpu.cpp @@ -5,7 +5,6 @@ using namespace Floats; -GPU::GPU(Memory& mem) : mem(mem) { GPU::GPU(Memory& mem) : mem(mem), renderer(regs) { vram = new u8[vramSize]; } @@ -28,7 +27,7 @@ void GPU::reset() { e.config2 = 0; } - // TODO: Reset blending, texturing, etc here + renderer.reset(); } void GPU::drawArrays(bool indexed) {