diff --git a/.vscode/launch.json b/.vscode/launch.json index 2a06b44..276681c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,8 @@ "type": "node-terminal", "name": "PCSX2", "request": "launch", - "command": "'/mnt/c/Program Files/PCSX2/pcsx2-qt.exe' '${workspaceFolder}/build/helloworld.iso' && exit" + "command": "'/mnt/c/Program Files/PCSX2/pcsx2-qt.exe' '${workspaceFolder}/build/helloworld.iso' && exit", + "preLaunchTask": "CMake: build" } ] diff --git a/src/main.c b/src/main.c index 9eda09f..aa5c9ea 100644 --- a/src/main.c +++ b/src/main.c @@ -106,9 +106,9 @@ int main() { graph_wait_vsync(); while(1) { dma_wait_fast(); - red++; - if(red > 0xFF) { - red = 0; + green++; + if(green > 0xFF) { + green = 0; } qword_t *q = buf; q = draw_disable_tests(q, 0, &state.zb);