renamed function
authorHolger Schemel <info@artsoft.org>
Thu, 25 Apr 2024 05:58:19 +0000 (07:58 +0200)
committerHolger Schemel <info@artsoft.org>
Thu, 25 Apr 2024 05:58:19 +0000 (07:58 +0200)
src/game_bd/bd_graphics.c
src/game_bd/bd_graphics.h
src/game_bd/main_bd.c

index aab4330160292ff3727b75f758cd0a99efda7313..f1558c277da10ab2cf210063960276db7398c867 100644 (file)
@@ -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);
 }
index 2e7392c745e39796287560af0e66a3a1a00d67cb..6b522fcc504143d767ddbc23d864e2fdefbd1112 100644 (file)
@@ -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);
index c11022b0c57951c6ea2fdfede1b36dc474205e17..2d742bee733d5aca128a37f8366df99e0b599407 100644 (file)
@@ -40,7 +40,7 @@ void bd_open_all(void)
 
   gd_caveset_clear();
 
-  gd_init_keystate();
+  gd_init_play_area();
 
   gd_sound_init();
 }