summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-03-22 17:19:07 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2020-03-22 17:19:07 +0100
commitd1d123dc6aeaa88702672c181377735e1b66125f (patch)
tree61114ff1a7d799d22d0390090996db75a3e6e18b
parentconsole init (diff)
downloadre3-d1d123dc6aeaa88702672c181377735e1b66125f.tar
re3-d1d123dc6aeaa88702672c181377735e1b66125f.tar.gz
re3-d1d123dc6aeaa88702672c181377735e1b66125f.tar.bz2
re3-d1d123dc6aeaa88702672c181377735e1b66125f.tar.lz
re3-d1d123dc6aeaa88702672c181377735e1b66125f.tar.xz
re3-d1d123dc6aeaa88702672c181377735e1b66125f.tar.zst
re3-d1d123dc6aeaa88702672c181377735e1b66125f.zip
-rw-r--r--src/core/Debug.cpp2
-rw-r--r--src/core/Debug.h2
-rw-r--r--src/peds/PedRoutes.h2
-rw-r--r--src/render/Console.cpp2
-rw-r--r--src/render/Console.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/core/Debug.cpp b/src/core/Debug.cpp
index 1bd353d3..b80e9959 100644
--- a/src/core/Debug.cpp
+++ b/src/core/Debug.cpp
@@ -9,4 +9,4 @@ void CDebug::DebugInitTextBuffer()
void CDebug::DebugDisplayTextBuffer()
{
-} \ No newline at end of file
+}
diff --git a/src/core/Debug.h b/src/core/Debug.h
index daee2e2a..395f66af 100644
--- a/src/core/Debug.h
+++ b/src/core/Debug.h
@@ -8,4 +8,4 @@ public:
static void DebugInitTextBuffer();
static void DebugDisplayTextBuffer();
-}; \ No newline at end of file
+};
diff --git a/src/peds/PedRoutes.h b/src/peds/PedRoutes.h
index a81f2d38..c478e38d 100644
--- a/src/peds/PedRoutes.h
+++ b/src/peds/PedRoutes.h
@@ -12,4 +12,4 @@ public:
static void AddRoutePoint(int16, CVector);
static void RemoveRoute(int16);
static void Initialise(void);
-}; \ No newline at end of file
+};
diff --git a/src/render/Console.cpp b/src/render/Console.cpp
index 7f783264..d4940955 100644
--- a/src/render/Console.cpp
+++ b/src/render/Console.cpp
@@ -92,4 +92,4 @@ cprintf(char* format, ...)
va_copy(vl2, vl1);
vsprintf(s, format, vl1);
TheConsole.AddLine(s, 255, 255, 128);
-} \ No newline at end of file
+}
diff --git a/src/render/Console.h b/src/render/Console.h
index 0b5702f7..c454d75e 100644
--- a/src/render/Console.h
+++ b/src/render/Console.h
@@ -22,4 +22,4 @@ public:
void Init() { m_nCurrentLine = 0; m_nLineCount = 0; }
};
-extern CConsole &TheConsole; \ No newline at end of file
+extern CConsole &TheConsole;