diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-04 17:18:14 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-04 17:18:14 +0200 |
commit | c46d1e454085a8cfdfbe4e1c3b5b42aeee5ed5c0 (patch) | |
tree | b662b2e7ad858727a41e8fe419d2e80fa9003b32 /drivers | |
parent | 6c15d59154528ae4aff221f79e0b520951049ca1 (diff) | |
parent | 4c5094a2fe31c366b0d6fe4d0ab44a7c90d753ff (diff) | |
download | redot-engine-c46d1e454085a8cfdfbe4e1c3b5b42aeee5ed5c0.tar.gz |
Merge pull request #97552 from dustdfg/drivers/use_dedicated_print_error
Use dedicated `print_error` method for colored output for unsupported drivers
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/SCsub | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/SCsub b/drivers/SCsub index 219c4451ee..e0bfa138f5 100644 --- a/drivers/SCsub +++ b/drivers/SCsub @@ -1,6 +1,8 @@ #!/usr/bin/env python from misc.utility.scons_hints import * +from methods import print_error + Import("env") env.drivers_sources = [] @@ -20,7 +22,7 @@ if env["platform"] == "windows": SConscript("backtrace/SCsub") if env["xaudio2"]: if "xaudio2" not in supported: - print("Target platform '{}' does not support the XAudio2 audio driver. Aborting.".format(env["platform"])) + print_error("Target platform '{}' does not support the XAudio2 audio driver".format(env["platform"])) Exit(255) SConscript("xaudio2/SCsub") @@ -34,7 +36,7 @@ if env["vulkan"]: SConscript("vulkan/SCsub") if env["d3d12"]: if "d3d12" not in supported: - print("Target platform '{}' does not support the D3D12 rendering driver. Aborting.".format(env["platform"])) + print_error("Target platform '{}' does not support the D3D12 rendering driver".format(env["platform"])) Exit(255) SConscript("d3d12/SCsub") if env["opengl3"]: @@ -43,7 +45,7 @@ if env["opengl3"]: SConscript("egl/SCsub") if env["metal"]: if "metal" not in supported: - print("Target platform '{}' does not support the Metal rendering driver. Aborting.".format(env["platform"])) + print_error("Target platform '{}' does not support the Metal rendering driver".format(env["platform"])) Exit(255) SConscript("metal/SCsub") |