summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2012-08-13 20:26:27 +0400
committerAndrey Nazarov <skuller@skuller.net>2012-08-13 20:26:27 +0400
commitdad50a933a693cd9701c283f2275b212a4b5e27c (patch)
tree9a44c7fa1a88b0a7f4d4af0497f0e4ab9313d782
parent25c955fddb3557fff5879559cf5beb19455fa286 (diff)
Move declaration into appropriate header.
-rw-r--r--inc/common/common.h2
-rw-r--r--inc/common/utils.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/inc/common/common.h b/inc/common/common.h
index 9094d5f..6b252c3 100644
--- a/inc/common/common.h
+++ b/inc/common/common.h
@@ -175,8 +175,6 @@ extern unsigned com_localTime; // milliseconds since Q2 startup
extern qboolean com_initialized;
extern time_t com_startTime;
-extern const char *const colorNames[10];
-
void Qcommon_Init(int argc, char **argv);
void Qcommon_Frame(void);
diff --git a/inc/common/utils.h b/inc/common/utils.h
index 1081990..b43283c 100644
--- a/inc/common/utils.h
+++ b/inc/common/utils.h
@@ -33,6 +33,8 @@ typedef enum {
COLOR_NONE
} color_index_t;
+extern const char *const colorNames[10];
+
qboolean Com_WildCmpEx(const char *filter, const char *string, int term, qboolean ignorecase);
#define Com_WildCmp(filter, string) Com_WildCmpEx(filter, string, 0, qfalse)