From: Holger Schemel Date: Thu, 25 Apr 2024 05:58:19 +0000 (+0200) Subject: renamed function X-Git-Tag: 4.4.0.0-test-1~45 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;ds=sidebyside;h=11f100237c5f4e22a11df896c15e144eea2be887;hp=edaa850fd2d2cae7ec31961fae3d56487e710c71;p=rocksndiamonds.git renamed function --- diff --git a/src/game_bd/bd_graphics.c b/src/game_bd/bd_graphics.c index aab43301..f1558c27 100644 --- a/src/game_bd/bd_graphics.c +++ b/src/game_bd/bd_graphics.c @@ -108,7 +108,7 @@ void set_play_area(int w, int h) play_area_h = h; } -void gd_init_keystate(void) +void gd_init_play_area(void) { set_play_area(SXSIZE, SYSIZE); } diff --git a/src/game_bd/bd_graphics.h b/src/game_bd/bd_graphics.h index 2e7392c7..6b522fcc 100644 --- a/src/game_bd/bd_graphics.h +++ b/src/game_bd/bd_graphics.h @@ -31,7 +31,7 @@ void set_play_area(int w, int h); int get_play_area_w(void); int get_play_area_h(void); -void gd_init_keystate(void); +void gd_init_play_area(void); void gd_prepare_tile_bitmap(GdCave *cave, Bitmap *bitmap, int scale_down_factor); void gd_set_tile_bitmap_reference(Bitmap *bitmap); diff --git a/src/game_bd/main_bd.c b/src/game_bd/main_bd.c index c11022b0..2d742bee 100644 --- a/src/game_bd/main_bd.c +++ b/src/game_bd/main_bd.c @@ -40,7 +40,7 @@ void bd_open_all(void) gd_caveset_clear(); - gd_init_keystate(); + gd_init_play_area(); gd_sound_init(); }