From 98fed4f50c5b0ba261a09b4661bc79782c8d08f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 21 Mar 2024 14:10:50 +1100 Subject: [PATCH] System Info: correct title in background mode --- scripts/modules/sys_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/modules/sys_info.py b/scripts/modules/sys_info.py index 255e628ce0b..cd6b27acc1e 100644 --- a/scripts/modules/sys_info.py +++ b/scripts/modules/sys_info.py @@ -181,7 +181,7 @@ def write_sysinfo(filepath): output.write("SDL: Blender was built without SDL support\n") if bpy.app.background: - output.write("\nOpenGL: missing, background mode\n") + output.write("\nGPU: missing, background mode\n") else: output.write(title("GPU")) output.write("renderer:\t%r\n" % gpu.platform.renderer_get())