From 1eb5ed0c93ae46fca995203a032b38018f6b57b1 Mon Sep 17 00:00:00 2001 From: Ted John Date: Sat, 27 May 2017 19:44:04 +0100 Subject: [PATCH] Update vscode debug configuration --- .vscode/launch.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 05028b4a95..6f0ed89e8b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,10 +7,15 @@ "request": "launch", "program": "${workspaceRoot}/bin/openrct2", "args": [], - "stopAtEntry": true, + "stopAtEntry": false, "cwd": "${workspaceRoot}/bin", "environment": [], "externalConsole": true, + "setupCommands": [ + { + "text": "-enable-pretty-printing" + } + ], "linux": { "MIMode": "gdb" }, @@ -27,6 +32,11 @@ "request": "attach", "program": "${workspaceRoot}/bin/openrct2", "processId": "${command.pickProcess}", + "setupCommands": [ + { + "text": "-enable-pretty-printing" + } + ], "linux": { "MIMode": "gdb" },