setup cmake build prelaunch task

This commit is contained in:
Samuel Walker 2025-03-29 09:53:27 -06:00
parent 0ca678ccf4
commit d0cac74dd0
2 changed files with 5 additions and 4 deletions

3
.vscode/launch.json vendored
View File

@ -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"
}
]

View File

@ -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);