shithub: cstory

Download patch

ref: 633ac64641e86af4797e3bfb0e0db148215f2cc6
parent: d1a975478445dd398777222bac963093e99a167e
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon Sep 7 23:24:55 EDT 2020

Go back to C++98

Now that `cute_spritebatch.h` is gone, there's only one other bit of
C++11 in the project that I can think of.

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -451,9 +451,9 @@
 	C_EXTENSIONS OFF
 )
 
-# Force strict C++11
+# Force strict C++98
 set_target_properties(CSE2 PROPERTIES
-	CXX_STANDARD 11
+	CXX_STANDARD 98
 	CXX_STANDARD_REQUIRED ON
 	CXX_EXTENSIONS OFF
 )