diff options
author | Arisotura <thetotalworm@gmail.com> | 2021-11-18 01:17:51 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2021-11-18 01:17:51 +0100 |
commit | 19ddaee13b5400b14ef3d3a6299474e7f715a948 (patch) | |
tree | 3a8b0804e91454109936db361a0ad7a9d5e1d5d5 /src/GPU3D.cpp | |
parent | 65c2a844ac0c1d323a67044973860cdc0dcac953 (diff) |
finally decouple Config from the core. baahhahahahah
Diffstat (limited to 'src/GPU3D.cpp')
-rw-r--r-- | src/GPU3D.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/GPU3D.cpp b/src/GPU3D.cpp index 9c02b2f..7fa04b3 100644 --- a/src/GPU3D.cpp +++ b/src/GPU3D.cpp @@ -22,7 +22,6 @@ #include "NDS.h" #include "GPU.h" #include "FIFO.h" -#include "Config.h" // 3D engine notes @@ -2164,7 +2163,7 @@ void ExecuteCommand() VertexSlotCounter = 0; VertexSlotsFree = 1; break; - + case 0x60: // viewport x1,y1,x2,y2 VertexPipelineCmdDelayed8(); // note: viewport Y coordinates are upside-down @@ -2413,7 +2412,7 @@ void ExecuteCommand() CurVertex[2] = ExecParams[1] & 0xFFFF; PosTest(); break; - + case 0x70: // box test NumTestCommands -= 3; BoxTest(ExecParams); |