removed ini.h, changed exec name to bibi

This commit is contained in:
Vincent-FK 2021-06-17 21:28:32 +02:00
parent 8f9f1c3341
commit fa9584d3c3
5 changed files with 3 additions and 5 deletions

2
.gitignore vendored
View File

@ -35,7 +35,7 @@
*.i*86
*.x86_64
*.hex
bomber
bibi
# Debug files
*.dSYM/

View File

@ -41,7 +41,7 @@ LDFLAGS = $(SDL_LIBS) -lSDL_image $(LDFLAGS_EXTRA)
SRC = $(wildcard src/*.c)
OBJ = $(SRC:.c=.o)
EXEC = bomber
EXEC = bibi
.PHONY: all dep clean mrproper

Binary file not shown.

View File

@ -507,7 +507,7 @@ int main_menu_and_game() {
SDL_WM_SetIcon(IMG_Load(IMG_PLAYER_DOWN), NULL);
SDL_WM_SetCaption("[PG110] Projet 2010", NULL);
printf("File: %s, func: %s, l.%d \n",__FILE__, __func__, __LINE__);
/** Load audio */
#ifdef SOUND_FMOD_ACTIVATED
FMUSIC_MODULE *musique_menu_p;
@ -1270,7 +1270,6 @@ int main_game_no_menu() {
int main(int argc, char *argv[]) {
#ifdef BYPASS_MENU
return main_game_no_menu();
#else
return main_menu_and_game();
#endif

View File

@ -10,7 +10,6 @@
#include <SDL/SDL.h>
#include <SDL/SDL_ttf.h>
#include <SDL/SDL_image.h>
#include <ini.h>
#include "../include/constant.h"
#include "../include/misc.h"