diff options
author | bigbossbro08 <bigbossbro08@gmail.com> | 2020-05-10 18:05:45 +0200 |
---|---|---|
committer | bigbossbro08 <bigbossbro08@gmail.com> | 2020-05-10 18:05:45 +0200 |
commit | bd302ecca157982a2bfe83d6cfb3167418fd8bb3 (patch) | |
tree | b9d849f3fc61246f0038e5bec53ef8f61b040b83 /src/core | |
parent | fixed few more typos (diff) | |
parent | some fixes and cosmetic changes (diff) | |
download | re3-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.cpp | 2 |
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; |