diff options
author | erorcun <erayorcunus@gmail.com> | 2020-04-12 00:34:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 00:34:10 +0200 |
commit | 727a64e316b38b87b6d25534baa711b815c65076 (patch) | |
tree | 65b953969047f0303a6a23a6055c9ae4b5b04da6 /src/core/Debug.cpp | |
parent | Merge pull request #400 from erorcun/erorcun (diff) | |
parent | CDebug fix (diff) | |
download | re3-727a64e316b38b87b6d25534baa711b815c65076.tar re3-727a64e316b38b87b6d25534baa711b815c65076.tar.gz re3-727a64e316b38b87b6d25534baa711b815c65076.tar.bz2 re3-727a64e316b38b87b6d25534baa711b815c65076.tar.lz re3-727a64e316b38b87b6d25534baa711b815c65076.tar.xz re3-727a64e316b38b87b6d25534baa711b815c65076.tar.zst re3-727a64e316b38b87b6d25534baa711b815c65076.zip |
Diffstat (limited to 'src/core/Debug.cpp')
-rw-r--r-- | src/core/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Debug.cpp b/src/core/Debug.cpp index 2b713198..917c99ab 100644 --- a/src/core/Debug.cpp +++ b/src/core/Debug.cpp @@ -24,7 +24,7 @@ CDebug::DebugAddText(const char *str) { int32 i = 0; if (*str != '\0') { - while (i < MAX_STR_LEN) { + while (i < MAX_STR_LEN - 1) { ms_aTextBuffer[ms_nCurrentTextLine][i++] = *(str++); if (*str == '\0') break; |