diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-25 19:54:47 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-25 19:54:47 -0500 |
| commit | c36f24357e1bd82d3cf317a751f36c7c2eab3aab (patch) | |
| tree | 36b6c807e7a53b03a9c70032cff18ebd5d216781 /src/JSystem/JUtility/JUTConsole.cpp | |
| parent | ea840c9a23814670ac7ab7475a376f4ce97faec1 (diff) | |
leaflift minor fix
Diffstat (limited to 'src/JSystem/JUtility/JUTConsole.cpp')
| -rw-r--r-- | src/JSystem/JUtility/JUTConsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSystem/JUtility/JUTConsole.cpp b/src/JSystem/JUtility/JUTConsole.cpp index e4e5d235..c599b3a4 100644 --- a/src/JSystem/JUtility/JUTConsole.cpp +++ b/src/JSystem/JUtility/JUTConsole.cpp @@ -250,7 +250,7 @@ void JUTConsole::print(const char* param_0) { /* 802CAFB0-802CB03C .text JUTConsole_print_f_va_ */ void JUTConsole_print_f_va_(JUTConsole* console, const char* fmt, va_list args) { - JUT_ASSERT(561, console!=0); + JUT_ASSERT(561, console!=NULL); char buf[1024]; vsnprintf(buf, sizeof(buf), fmt, args); console->print(buf); |
