diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-24 14:58:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 14:58:36 +0200 |
commit | d442f3d0aa4185f154bee396efaf24ceb73c9d84 (patch) | |
tree | 46086425e2349832e9f07f05492ac67d74ecc333 /platform/windows | |
parent | 548c26239907c34081a96bff61d653f2a32ac243 (diff) | |
parent | de59fe04e73250229e6ac11f9314e1b75dbdef1a (diff) |
Merge pull request #21351 from akien-mga/print_verbose
Add print_verbose to print to stdout only in verbose mode
Diffstat (limited to 'platform/windows')
-rw-r--r-- | platform/windows/joypad.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/platform/windows/joypad.cpp b/platform/windows/joypad.cpp index 796531fe24..b56fb6509e 100644 --- a/platform/windows/joypad.cpp +++ b/platform/windows/joypad.cpp @@ -540,9 +540,7 @@ void JoypadWindows::load_xinput() { } if (!xinput_dll) { - if (OS::get_singleton()->is_stdout_verbose()) { - print_line("Could not find XInput, using DirectInput only"); - } + print_verbose("Could not find XInput, using DirectInput only"); return; } |