textscreen: Fix const correctness issue in guitest

This commit is contained in:
Turo Lamminen 2018-03-27 19:35:13 +03:00
parent 695895ddb2
commit f186ecd1ae

View file

@ -34,7 +34,7 @@ enum
// also put some crazy extensions to test the escape function. a"b"c"""dd
const char *extensions[] = { "wad", "lmp", "txt", "a\"b\"c\"\"\"dd", "",
"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"", NULL };
char *radio_values[] = { "Badger", "Mushroom", "Snake" };
const char *radio_values[] = { "Badger", "Mushroom", "Snake" };
char *textbox_value = NULL;
int numbox_value = 0;
int radiobutton_value;