shithub: choc

Download patch

ref: cf2166483908b35d607e2431549cc31410283a8d
parent: 0ad55d18f3275b0bf32ffad90198e300f7c005b9
author: Turo Lamminen <turotl@gmail.com>
date: Tue Jan 22 14:18:51 EST 2019

setup: Fix const correctness issue in GetLaunchButton

--- a/src/setup/mainmenu.c
+++ b/src/setup/mainmenu.c
@@ -181,7 +181,7 @@
 
 static txt_button_t *GetLaunchButton(void)
 {
-    char *label;
+    const char *label;
 
     switch (gamemission)
     {