- [FIX] Reajustat launch.json per al mini-debugger de release

This commit is contained in:
2026-04-13 11:08:23 +02:00
parent 8a80bffe42
commit 90f66a4cdc

6
.vscode/launch.json vendored
View File

@@ -1,13 +1,13 @@
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Debug My Lua App", "name": "Debug Mini Game",
"type": "myLuaApp", "type": "mini-debugger",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/mini_debug", "program": "${workspaceFolder}/mini_debug",
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"trace": true
} }
] ]
} }