Fix error that compiler does not notice
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 7 Feb 2010 09:38:38 +0000 (10:38 +0100)
committerArun Persaud <arun@nubati.net>
Sun, 7 Feb 2010 20:05:47 +0000 (12:05 -0800)
Boolean GLT_GetFromList did not return a value. But no error on Ubuntu!

xgamelist.c

index aa7c6a2..4eb1d38 100644 (file)
@@ -643,6 +643,7 @@ void GLT_AddToList(char *name)
 Boolean GLT_GetFromList(int index, char *name)
 {
     strcpy(name, strings[index]);
+    return TRUE;
 }
 
 void GLT_DeSelectList()