From 3b8b2b1fe0e0350269dcdfcad70193ccfb1b1baa Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 20 Sep 2019 22:44:42 +0200 Subject: [PATCH] - it compiles again. --- platform/Windows/build.vcxproj | 4 ++-- platform/Windows/build.vcxproj.filters | 4 ++-- source/build/src/2d.cpp | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/platform/Windows/build.vcxproj b/platform/Windows/build.vcxproj index e6a1d915c..76b1863a4 100644 --- a/platform/Windows/build.vcxproj +++ b/platform/Windows/build.vcxproj @@ -215,8 +215,8 @@ true - - + + diff --git a/platform/Windows/build.vcxproj.filters b/platform/Windows/build.vcxproj.filters index 645f5f001..4d9e61703 100644 --- a/platform/Windows/build.vcxproj.filters +++ b/platform/Windows/build.vcxproj.filters @@ -14,8 +14,8 @@ - - + + diff --git a/source/build/src/2d.cpp b/source/build/src/2d.cpp index f3d929ddb..c3c6d6413 100644 --- a/source/build/src/2d.cpp +++ b/source/build/src/2d.cpp @@ -82,8 +82,8 @@ void drawlinergb(int32_t x1, int32_t y1, int32_t x2, int32_t y2, palette_t p) } #endif - char const col = palookup[0][p.f]; - drawlinepixels(x1, y1, x2, y2, col); + //char const col = palookup[0][p.f]; + //drawlinepixels(x1, y1, x2, y2, col); } void renderDrawLine(int32_t x1, int32_t y1, int32_t x2, int32_t y2, char col) @@ -100,7 +100,7 @@ void renderDrawLine(int32_t x1, int32_t y1, int32_t x2, int32_t y2, char col) } #endif - drawlinepixels(x1, y1, x2, y2, col); + //drawlinepixels(x1, y1, x2, y2, col); }