(svn r17420) -Codechange: replace assert() by assert_compile() where possible

This commit is contained in:
smatz
2009-09-04 23:02:52 +00:00
parent ae9441aa46
commit 0bfea0646c
4 changed files with 5 additions and 5 deletions

View File

@@ -738,7 +738,7 @@ void StartupEconomy()
{
int i;
assert(sizeof(_price) == NUM_PRICES * sizeof(Money));
assert_compile(sizeof(_price) == NUM_PRICES * sizeof(Money));
/* Setup price bases */
for (i = 0; i < NUM_PRICES; i++) {