1
0

Fixed warnings in MSVC.

It complained about undefined return values or using uninitialized variables.
This commit is contained in:
Mattes D
2015-06-02 12:51:43 +02:00
parent a54fa15bc6
commit 48c153bf53
13 changed files with 92 additions and 4 deletions

View File

@@ -48,6 +48,10 @@ int cMobCensus::GetCapMultiplier(cMonster::eFamily a_MobFamily)
return -1;
}
}
#if !defined(__clang__)
ASSERT(!"Unknown mob family");
return -1;
#endif
}