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",
|
"type": "node-terminal",
|
||||||
"name": "PCSX2",
|
"name": "PCSX2",
|
||||||
"request": "launch",
|
"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();
|
graph_wait_vsync();
|
||||||
while(1) {
|
while(1) {
|
||||||
dma_wait_fast();
|
dma_wait_fast();
|
||||||
red++;
|
green++;
|
||||||
if(red > 0xFF) {
|
if(green > 0xFF) {
|
||||||
red = 0;
|
green = 0;
|
||||||
}
|
}
|
||||||
qword_t *q = buf;
|
qword_t *q = buf;
|
||||||
q = draw_disable_tests(q, 0, &state.zb);
|
q = draw_disable_tests(q, 0, &state.zb);
|
||||||
|
Loading…
Reference in New Issue
Block a user