summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbigbossbro08 <bigbossbro08@gmail.com>2020-05-10 18:05:45 +0200
committerbigbossbro08 <bigbossbro08@gmail.com>2020-05-10 18:05:45 +0200
commitbd302ecca157982a2bfe83d6cfb3167418fd8bb3 (patch)
treeb9d849f3fc61246f0038e5bec53ef8f61b040b83 /src/core
parentfixed few more typos (diff)
parentsome fixes and cosmetic changes (diff)
downloadre3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar.gz
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar.bz2
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar.lz
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar.xz
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.tar.zst
re3-bd302ecca157982a2bfe83d6cfb3167418fd8bb3.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/FileLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/FileLoader.cpp b/src/core/FileLoader.cpp
index adf4b9f8..88afb40c 100644
--- a/src/core/FileLoader.cpp
+++ b/src/core/FileLoader.cpp
@@ -783,7 +783,7 @@ CFileLoader::LoadVehicleObject(const char *line)
mi->SetTexDictionary(txd);
for(p = gamename; *p; p++)
if(*p == '_') *p = ' ';
- strncpy(mi->m_gameName, gamename, 32);
+ strcpy(mi->m_gameName, gamename);
mi->m_level = level;
mi->m_compRules = comprules;