diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-01-30 11:13:12 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-01-30 11:13:12 +0200 |
commit | ffdf8084c07f7989c129a46ff339debfdd448080 (patch) | |
tree | 7ebcfd3bed22ffa13f931c707247e8bb0d26defc | |
parent | 51991e20143a39e9ef0107163eaf283ca0a761ea (diff) | |
download | redot-engine-ffdf8084c07f7989c129a46ff339debfdd448080.tar.gz |
Use raw strings for D3D12 install messages.
-rw-r--r-- | platform/windows/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index e5e0a07f82..0619e62563 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -477,7 +477,7 @@ def configure_msvc(env, vcvars_msvc_config): # Check whether we have d3d12 dependencies installed. if not os.path.exists(env["mesa_libs"]): print("The Direct3D 12 rendering driver requires dependencies to be installed.") - print("You can install them by running `python misc\scripts\install_d3d12_sdk_windows.py`.") + print(r"You can install them by running `python misc\scripts\install_d3d12_sdk_windows.py`.") print("See the documentation for more information:") print( "https://docs.godotengine.org/en/latest/contributing/development/compiling/compiling_for_windows.html" @@ -702,7 +702,7 @@ def configure_mingw(env): # Check whether we have d3d12 dependencies installed. if not os.path.exists(env["mesa_libs"]): print("The Direct3D 12 rendering driver requires dependencies to be installed.") - print("You can install them by running `python misc\scripts\install_d3d12_sdk_windows.py`.") + print(r"You can install them by running `python misc\scripts\install_d3d12_sdk_windows.py`.") print("See the documentation for more information:") print( "https://docs.godotengine.org/en/latest/contributing/development/compiling/compiling_for_windows.html" |