mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-02-07 21:56:44 +01:00
fix compilation on emscripten
This commit is contained in:
parent
7872542f2b
commit
ce76a53939
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ SYMBOL_INTERNAL void GamestateProgress(struct Game* game) {
|
||||||
al_convert_memory_bitmaps();
|
al_convert_memory_bitmaps();
|
||||||
DrawGamestates(game);
|
DrawGamestates(game);
|
||||||
double delta = al_get_time() - game->_priv.loading.time;
|
double delta = al_get_time() - game->_priv.loading.time;
|
||||||
if (tmp->showLoading) {
|
if (game->_priv.loading.current->showLoading) {
|
||||||
(*game->_priv.loading.gamestate->api->Gamestate_Logic)(game, game->_priv.loading.gamestate->data, delta);
|
(*game->_priv.loading.gamestate->api->Gamestate_Logic)(game, game->_priv.loading.gamestate->data, delta);
|
||||||
(*game->_priv.loading.gamestate->api->Gamestate_Draw)(game, game->_priv.loading.gamestate->data);
|
(*game->_priv.loading.gamestate->api->Gamestate_Draw)(game, game->_priv.loading.gamestate->data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue