From 30ff5fde6922d129f63642ef0ce1c0c641d2739b Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 23 Dec 2023 22:42:14 -0500 Subject: [PATCH] Adds a vscode launch option for starting the client in the compatibility renderer (#22904) adds a vscode launch option to start the client with the compatibility renderer --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4d7ba6748e..5390b91409 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,6 +13,15 @@ "console": "internalConsole", "stopAtEntry": false }, + { + "name": "Client (Compatibility renderer)", + "type": "coreclr", + "request": "launch", + "program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll", + "args": "--cvar display.compat=true", + "console": "internalConsole", + "stopAtEntry": false + }, { "name": "Server", "type": "coreclr",