Made compilation actually work

This commit is contained in:
2022-02-27 09:49:06 -08:00
parent 2417e56c07
commit 25613d54a7
3 changed files with 5 additions and 2 deletions

View File

@ -31,6 +31,9 @@ bool gameInit(game_t *game) {
bool doneResize = false;
bool gameUpdate(game_t *game, float delta) {
ASSERT_NOT_NULL(game);
ASSERT_GREATER_THAN(delta, 0);
// Let the engine do its thing.
engineUpdateStart(&game->engine, delta);