diff options
author | aap <aap@papnet.eu> | 2020-03-23 00:34:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 00:34:41 +0100 |
commit | 4070cad4a746728f0282862aa0a0063c15bbc86e (patch) | |
tree | fd780f1f980c6d2036f8b57c32f75e203c7b39a8 /src/core/Debug.cpp | |
parent | Fix order of math operations on integers (fires) (diff) | |
parent | merge with upstream (diff) | |
download | re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.gz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.bz2 re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.lz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.xz re3-4070cad4a746728f0282862aa0a0063c15bbc86e.tar.zst re3-4070cad4a746728f0282862aa0a0063c15bbc86e.zip |
Diffstat (limited to 'src/core/Debug.cpp')
-rw-r--r-- | src/core/Debug.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/Debug.cpp b/src/core/Debug.cpp new file mode 100644 index 00000000..b80e9959 --- /dev/null +++ b/src/core/Debug.cpp @@ -0,0 +1,12 @@ +#include "Debug.h" + +int CDebug::ms_nCurrentTextLine; + +void CDebug::DebugInitTextBuffer() +{ + ms_nCurrentTextLine = 0; +} + +void CDebug::DebugDisplayTextBuffer() +{ +} |