]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/playerlist.c
Turn #define'd constants into actual constants
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / playerlist.c
index b3ee38670a04ad41117b82f3db7c0b2ee780b974..c60b34e380755073ebcd0f9203e38cfe82d6ab1e 100644 (file)
@@ -20,11 +20,11 @@ entity makeXonoticPlayerList();
 
 #ifdef IMPLEMENTATION
 
-#define PLAYERPARM_SCORE 0
-#define PLAYERPARM_PING 1
-#define PLAYERPARM_TEAM 2
-#define PLAYERPARM_NAME 3
-#define PLAYERPARM_COUNT 4
+const float PLAYERPARM_SCORE = 0;
+const float PLAYERPARM_PING = 1;
+const float PLAYERPARM_TEAM = 2;
+const float PLAYERPARM_NAME = 3;
+const float PLAYERPARM_COUNT = 4;
 
 entity makeXonoticPlayerList()
 {