shithub: cstory

Download patch

ref: 9eaba52cafcac7c2f3bfc72d7be1f15893196be1
parent: 8fb3f302a098bed2bc10021fc9d9d47ae78ad9a5
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon Jul 15 14:08:15 EDT 2019

Actually fix the Makefile

Sorry, couldn't test the last commit because I was on a Windows
machine without MSYS2

--- a/Makefile
+++ b/Makefile
@@ -206,9 +206,9 @@
 endif
 
 ifeq ($(RENDERER), Texture)
-	SOURCES += Backends/Rendering/SDLTexture.cpp
+	SOURCES += Backends/Rendering/SDLTexture
 else ifeq ($(RENDERER), Software)
-	SOURCES += Backends/Rendering/Software.cpp
+	SOURCES += Backends/Rendering/Software
 endif
 
 OBJECTS = $(addprefix obj/$(FILENAME)/, $(addsuffix .o, $(SOURCES)))