From cb922ac7627e72b1900a8e566b8a4ce8de35e9f0 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Wed, 22 Jul 2026 16:10:03 +0200 Subject: [PATCH] Debugging working. --- .vscode/launch.json | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index b0131d9..ee60f70 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,28 +5,12 @@ "version": "0.2.0", "configurations": [ { - "name": "(gdb) Launch", - "type": "cppdbg", + "name": "Debug", + "type": "gdb", "request": "launch", - "program": "${workspaceFolder}/build/2D_Engine", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - }, - { - "description": "Set Disassembly Flavor to Intel", - "text": "-gdb-set disassembly-flavor intel", - "ignoreFailures": true - } - ] + "target": "${workspaceFolder}/build/2D_Engine", + "cwd": "${workspaceRoot}", + "valuesFormatting": "parseText" } ] } \ No newline at end of file