Fix the debugger not being able to show TCHAR *

This commit is contained in:
2024-11-25 15:20:33 -05:00
parent 75dcdf54cc
commit 979b8d4a07
2 changed files with 32 additions and 0 deletions

View File

@@ -229,6 +229,13 @@ WORKSPACE["settings"]["files.watcherExclude"] = {
f'{UNREALENGINE}/Templates/**' : True
}
#
# Tell the LLDB plugin not to dereference pointers. This is dumb behavior,
# it dereferences "char *" and shows only the first character. Not dereferencing
# the pointer shows the whole string.
#
WORKSPACE["settings"]["lldb.dereferencePointers"] = false
#
# Write Integration.code-workspace.
#