Fixed missing return in some c tests

This commit is contained in:
Chris Teubert
2015-05-20 10:22:59 -07:00
parent bb104b63f4
commit a3fa77d87c
3 changed files with 4 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ int basicCTRLTest(char** drefs, int ac)
{
return -30000 + result;
}
return 0;
}
int testCTRL_Player()
@@ -143,5 +144,6 @@ int testCTRL_Speedbrakes()
{
return -30000 + result;
}
return 0;
}
#endif