replace "Critical Error" with "Not implemented yet"

This commit is contained in:
Sebastian Krzyszkowiak 2012-03-08 21:09:50 +01:00
parent 8e2e55e416
commit 7f4c4f9fb5

View file

@ -87,7 +87,7 @@ void DrawMenuState(struct Game *game) {
default: default:
game->menu.selected=0; game->menu.selected=0;
font = game->menu.font; if (game->menu.selected==0) font = game->menu.font_selected; font = game->menu.font; if (game->menu.selected==0) font = game->menu.font_selected;
al_draw_text_with_shadow(font, al_map_rgb(255,255,255), al_get_display_width(game->display)*0.5, al_get_display_height(game->display)*0.5, ALLEGRO_ALIGN_CENTRE, "Critical Error"); al_draw_text_with_shadow(font, al_map_rgb(255,255,255), al_get_display_width(game->display)*0.5, al_get_display_height(game->display)*0.5, ALLEGRO_ALIGN_CENTRE, "Not implemented yet");
break; break;
} }
} }