setup cmake build prelaunch task
This commit is contained in:
parent
0ca678ccf4
commit
d0cac74dd0
3
.vscode/launch.json
vendored
3
.vscode/launch.json
vendored
@ -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"
|
||||
}
|
||||
|
||||
]
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user