diff options
| author | ZuBsPaCe | 2015-11-19 15:35:18 +0100 |
|---|---|---|
| committer | ZuBsPaCe | 2015-11-19 15:35:18 +0100 |
| commit | ce3216429ee0f695a7529460c7c31e72f04b6533 (patch) | |
| tree | c622d4e2b9349f2e79685540bb30b225ae1d943f /platform/winrt/os_winrt.cpp | |
| parent | a5683def19aaca49d0624dd9d5528fee3b96267d (diff) | |
| download | godot-ce3216429ee0f695a7529460c7c31e72f04b6533.tar.gz godot-ce3216429ee0f695a7529460c7c31e72f04b6533.tar.zst godot-ce3216429ee0f695a7529460c7c31e72f04b6533.zip | |
Added missing \n in script error output.
Diffstat (limited to '')
| -rw-r--r-- | platform/winrt/os_winrt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/winrt/os_winrt.cpp b/platform/winrt/os_winrt.cpp index ef893d715..24be2f47e 100644 --- a/platform/winrt/os_winrt.cpp +++ b/platform/winrt/os_winrt.cpp @@ -441,7 +441,7 @@ void OSWinrt::print_error(const char* p_function, const char* p_file, int p_line print(" At: %s:%i\n", p_file, p_line); break; case ERR_SCRIPT: - print("SCRIPT ERROR: %s: %s", p_function, err_details); + print("SCRIPT ERROR: %s: %s\n", p_function, err_details); print(" At: %s:%i\n", p_file, p_line); break; } |
