X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.h;h=50490be33c0a3527fec1a9f921e1823ddc450217;hb=c3218c06da4da799c906a5adaacd625583f65616;hp=18cac2edb6500aa34f4f05de5cbff92c581ba429;hpb=1e422c29292f0583391b0ce9e9c872b38f035ac0;p=rocksndiamonds.git diff --git a/src/game.h b/src/game.h index 18cac2ed..50490be3 100644 --- a/src/game.h +++ b/src/game.h @@ -156,6 +156,7 @@ struct GameInfo boolean gravity; boolean explosions_delayed; boolean envelope_active; + boolean no_time_limit; /* (variable only in very special case) */ /* values for the new EMC elements */ int lenses_time_left; @@ -178,7 +179,7 @@ struct GameInfo boolean set_centered_player; /* values for random number generator initialization after snapshot */ - unsigned long num_random_calls; + unsigned int num_random_calls; }; struct PlayerInfo @@ -278,7 +279,7 @@ struct PlayerInfo int push_delay; int push_delay_value; - unsigned long actual_frame_counter; + unsigned int actual_frame_counter; int drop_delay; int drop_pressed_delay; @@ -331,7 +332,7 @@ void Moving2Blocked(int, int, int *, int *); void Blocked2Moving(int, int, int *, int *); void DrawDynamite(int, int); -void StartGameActions(boolean, boolean, long); +void StartGameActions(boolean, boolean, int); void GameActions(void); void GameActions_EM_Main(); @@ -350,7 +351,7 @@ void RaiseScoreElement(int); void RequestQuitGameExt(boolean, boolean, char *); void RequestQuitGame(boolean); -unsigned int InitEngineRandom_RND(long); +unsigned int InitEngineRandom_RND(int); unsigned int RND(int); void FreeEngineSnapshot();