diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-07-09 09:32:42 +0200 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-07-09 09:51:32 +0200 |
commit | b2d27214aa0bee3cf0dc091846bf087e007c9607 (patch) | |
tree | 1240430c13a71d978e540fb98067c2479eb9211b /core/os/os.cpp | |
parent | d629b17291347b20ef3730f97f484e807ac07f1a (diff) |
Keep debug & verbose options after loading project from project manager
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 231069fcfb..dc8bd5ee69 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -163,6 +163,10 @@ bool OS::is_stdout_verbose() const { return _verbose_stdout; } +bool OS::is_stdout_debug_enabled() const { + return _debug_stdout; +} + void OS::dump_memory_to_file(const char *p_file) { //Memory::dump_static_mem_to_file(p_file); } |