From d0cac74dd0a7ff3e360bf5dc336007e5375dd27f Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Sat, 29 Mar 2025 09:53:27 -0600 Subject: [PATCH] setup cmake build prelaunch task --- .vscode/launch.json | 3 ++- src/main.c | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) 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);