Skip to content

Commit

Permalink
Merge pull request #87734 from bruvzg/raw_str_d3d
Browse files Browse the repository at this point in the history
Use raw strings for D3D12 install messages.
  • Loading branch information
akien-mga committed Jan 30, 2024
2 parents 07df0a7 + ffdf808 commit aff437e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/windows/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit aff437e

Please sign in to comment.