summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-04-12 00:34:10 +0200
committerGitHub <noreply@github.com>2020-04-12 00:34:10 +0200
commit727a64e316b38b87b6d25534baa711b815c65076 (patch)
tree65b953969047f0303a6a23a6055c9ae4b5b04da6
parentMerge pull request #400 from erorcun/erorcun (diff)
parentCDebug fix (diff)
downloadre3-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
-rw-r--r--src/core/Debug.cpp2
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;