diff options
| author | oy <tom_adams@web.de> | 2011-08-03 13:53:18 -0700 |
|---|---|---|
| committer | oy <tom_adams@web.de> | 2011-08-03 13:53:18 -0700 |
| commit | 435639636eb40ee016c77a54481a914aec311644 (patch) | |
| tree | 3116c389a35eb2e4a8f1e6978c460fbc6b5b0610 /src/game | |
| parent | 558f62f8107192c90696bf59d12c92ffcd176685 (diff) | |
| parent | 83652c91ec44f5cda7c864a7492555c798bb7ff7 (diff) | |
| download | zcatch-435639636eb40ee016c77a54481a914aec311644.tar.gz zcatch-435639636eb40ee016c77a54481a914aec311644.zip | |
Merge pull request #808 from SushiTee/master
fixed a warning
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/client/components/countryflags.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/client/components/countryflags.cpp b/src/game/client/components/countryflags.cpp index ef350cd7..6daf3c2e 100644 --- a/src/game/client/components/countryflags.cpp +++ b/src/game/client/components/countryflags.cpp @@ -94,6 +94,7 @@ void CCountryFlags::OnInit() CCountryFlag DummyEntry; DummyEntry.m_CountryCode = -1; DummyEntry.m_Texture = -1; + mem_zero(DummyEntry.m_aCountryCodeString, sizeof(DummyEntry.m_aCountryCodeString)); m_aCountryFlags.add(DummyEntry); } } |