mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-02-07 21:56:44 +01:00
fix building with LIBSUPERDERPY_SINGLE_THREAD
This commit is contained in:
parent
93db442e7b
commit
6e69d5410e
1 changed files with 2 additions and 2 deletions
|
@ -297,8 +297,8 @@ SYMBOL_INTERNAL void GamestateProgress(struct Game* game) {
|
||||||
#else
|
#else
|
||||||
al_convert_memory_bitmaps();
|
al_convert_memory_bitmaps();
|
||||||
double delta = al_get_time() - game->_priv.loading.time;
|
double delta = al_get_time() - game->_priv.loading.time;
|
||||||
if (game->_priv.loading.current->showLoading) {
|
if (game->_priv.loading.current->show_loading) {
|
||||||
game->_priv.loading.gamestate->api->Gamestate_Logic(game, game->_priv.loading.gamestate->data, delta);
|
game->_priv.loading.gamestate->api->logic(game, game->_priv.loading.gamestate->data, delta);
|
||||||
DrawGamestates(game);
|
DrawGamestates(game);
|
||||||
}
|
}
|
||||||
game->_priv.loading.time += delta;
|
game->_priv.loading.time += delta;
|
||||||
|
|
Loading…
Reference in a new issue