diff options
author | irungentoo <irungentoo@gmail.com> | 2013-08-08 10:59:22 -0400 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-08-08 10:59:22 -0400 |
commit | a3a0fb57cb8804d619e04cfc22f8154db067fa25 (patch) | |
tree | 1901758073d2b96f8fb007a2c53f9269eed4a188 /testing | |
parent | e8ee3c0cd31f70593b65cec7fe411e07aceb3725 (diff) |
Moved a define and fixed another.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/toxic/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/toxic/main.c b/testing/toxic/main.c index d4579571..7fa9e964 100644 --- a/testing/toxic/main.c +++ b/testing/toxic/main.c | |||
@@ -22,7 +22,10 @@ extern int add_req(uint8_t *public_key); // XXX | |||
22 | 22 | ||
23 | /* Holds status of chat windows */ | 23 | /* Holds status of chat windows */ |
24 | char WINDOW_STATUS[MAX_WINDOW_SLOTS]; | 24 | char WINDOW_STATUS[MAX_WINDOW_SLOTS]; |
25 | //#define TOXICVER "0.1.0" //Will be moved to a -D flag later | 25 | |
26 | #ifndef TOXICVER | ||
27 | #define TOXICVER "NOVER" //Use the -D flag to set this | ||
28 | #endif | ||
26 | 29 | ||
27 | static ToxWindow windows[MAX_WINDOW_SLOTS]; | 30 | static ToxWindow windows[MAX_WINDOW_SLOTS]; |
28 | static ToxWindow* prompt; | 31 | static ToxWindow* prompt; |