diff options
| author | Rémi Verschelde | 2017-05-29 20:47:05 +0200 |
|---|---|---|
| committer | GitHub | 2017-05-29 20:47:05 +0200 |
| commit | 74a0bed3d2dd2020908bd396991f0f2ab0daf096 (patch) | |
| tree | b8bd2d2b88082b035f416abd73aabdc88c5c774f | |
| parent | b3c6d9914aaa13ed3e0aa1e0b28448ae0929f4bc (diff) | |
| parent | d6333066fcdc502fd7b2064008ddc2a491a54fc7 (diff) | |
| download | godot-74a0bed3d2dd2020908bd396991f0f2ab0daf096.tar.gz godot-74a0bed3d2dd2020908bd396991f0f2ab0daf096.tar.zst godot-74a0bed3d2dd2020908bd396991f0f2ab0daf096.zip | |
| -rw-r--r-- | platform/x11/os_x11.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index 853418538..2a912a7ba 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -336,7 +336,9 @@ void OS_X11::initialize(const VideoMode &p_desired, int p_video_driver, int p_au cursor_theme = XcursorGetTheme(x11_display); if (!cursor_theme) { - WARN_PRINT("Could not find cursor theme"); + if (is_stdout_verbose()) { + print_line("XcursorGetTheme could not get cursor theme"); + } cursor_theme = "default"; } |
