X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_bd%2Fbd_graphics.c;h=0194f4429b043ec7cfbc02fb0ce6c1392f1e94bf;hb=ed0e6a47f8df7c4342c54f2bb3c501c8458ba90d;hp=4ae1390a8aef30fc25c3a6451476af10e4ae76b2;hpb=d734f10b6ace4fb67c2d260607349a6409fbdb57;p=rocksndiamonds.git diff --git a/src/game_bd/bd_graphics.c b/src/game_bd/bd_graphics.c index 4ae1390a..0194f442 100644 --- a/src/game_bd/bd_graphics.c +++ b/src/game_bd/bd_graphics.c @@ -58,8 +58,6 @@ static int scroll_x, scroll_y; // quit, global variable which is set to true if the application should quit boolean gd_quit = FALSE; -const byte *gd_keystate; - static int cell_size = 0; // graphic info for game objects/frames and players/actions/frames @@ -110,11 +108,9 @@ 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); - - gd_keystate = SDL_GetKeyboardState(NULL); } /* @@ -542,11 +538,13 @@ static inline boolean el_diggable(const int element) return (gd_elements[element & O_MASK].properties & P_DIGGABLE) != 0; } +#if 0 // returns true if the element is collectible static inline boolean el_collectible(const int element) { return (gd_elements[element & O_MASK].properties & P_COLLECTIBLE) != 0; } +#endif // returns true if the element is pushable static inline boolean el_pushable(const int element)