diff options
Diffstat (limited to 'core/print_string.cpp')
| -rw-r--r-- | core/print_string.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/print_string.cpp b/core/print_string.cpp index 0355154488..f53d50e078 100644 --- a/core/print_string.cpp +++ b/core/print_string.cpp @@ -30,7 +30,7 @@ #include "print_string.h" -#include "os/os.h" +#include "core/os/os.h" #include <stdio.h> @@ -107,3 +107,10 @@ void print_error(String p_string) { _global_unlock(); } + +void print_verbose(String p_string) { + + if (OS::get_singleton()->is_stdout_verbose()) { + print_line(p_string); + } +} |