diff --git a/Makefile b/Makefile
index 7add0db..02e2bcc 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CFLAGS=-I$(IDIR) -Wall -g
 
 SRCDIR=src
 ODIR=obj
-LIBS=-lallegro -lallegro_audio-debug -lallegro_acodec-debug -lallegro_image-debug -lallegro_font-debug -lallegro_ttf-debug -lm
+LIBS=-lallegro-debug -lallegro_audio-debug -lallegro_acodec-debug -lallegro_image-debug -lallegro_font-debug -lallegro_ttf-debug -lm
 
 _OBJ = config.o main.o about.o intro.o loading.o map.o menu.o level.o 
 OBJ = $(patsubst %,$(ODIR)/%,$(_OBJ))
diff --git a/src/main.c b/src/main.c
index 4ec7676..1939edc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -259,7 +259,7 @@ int main(int argc, char **argv){
 	if (game.fullscreen) al_hide_mouse_cursor(game.display);
 
 	al_set_new_bitmap_flags(ALLEGRO_MAG_LINEAR | ALLEGRO_MIN_LINEAR);
-	al_set_new_bitmap_format(ALLEGRO_PIXEL_FORMAT_ANY_32_WITH_ALPHA);
+	//al_set_new_bitmap_format(ALLEGRO_PIXEL_FORMAT_ANY_32_WITH_ALPHA);
 
 	game.font = al_load_ttf_font("data/ShadowsIntoLight.ttf",al_get_display_height(game.display)*0.09,0 );
 	game.font_console = al_load_ttf_font("data/DejaVuSansMono.ttf",al_get_display_height(game.display)*0.018,0 );