summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--inc/window.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f05677a..d080d30 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CC = g++
COMPILER_FLAGS = -w -I$(DEPS)
-LINKER_FLAGS = -g -lm -lSDL2 -lSDL2_image -std=c++11
+LINKER_FLAGS = -g -lm -lSDL2 -std=c++11
all : $(OBJS)
$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o exec
diff --git a/inc/window.hpp b/inc/window.hpp
index b7ec500..8ce53db 100644
--- a/inc/window.hpp
+++ b/inc/window.hpp
@@ -3,7 +3,7 @@
#include <SDL2/SDL.h>
#include <algorithm>
-
+#include <string>
#include "constants.hpp"
class Window