Remove debug code

This commit is contained in:
Bill Rossi 2025-02-27 06:34:20 -05:00
parent 2129ea4f8c
commit 56c75f59aa

6
game.c
View File

@ -195,11 +195,17 @@ void handle_input(Game *g) {
return dialog_handle_input(g->dialog);
}
/*
if (IsKeyPressed(KEY_R)) {
g->state = GAME_STATE_INITIALIZING;
return;
}
if (IsKeyPressed(KEY_S)) {
ExportImage(LoadImageFromScreen(), "img.png");
}
*/
if (!is_player_turn(g)) return;
switch (g->state) {