summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testing/toxic/main.c3
-rw-r--r--testing/toxic/windows.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/testing/toxic/main.c b/testing/toxic/main.c
index d7b251dc..063c1483 100644
--- a/testing/toxic/main.c
+++ b/testing/toxic/main.c
@@ -24,9 +24,6 @@
24#include "prompt.h" 24#include "prompt.h"
25#include "friendlist.h" 25#include "friendlist.h"
26 26
27#ifndef TOXICVER
28#define TOXICVER "NOVER" //Use the -D flag to set this
29#endif
30 27
31static void init_term() 28static void init_term()
32{ 29{
diff --git a/testing/toxic/windows.h b/testing/toxic/windows.h
index 37f3e9da..7d81e814 100644
--- a/testing/toxic/windows.h
+++ b/testing/toxic/windows.h
@@ -19,6 +19,10 @@
19/* maximum window slots for WINDOW_STATUS array */ 19/* maximum window slots for WINDOW_STATUS array */
20#define MAX_WINDOW_SLOTS N_DEFAULT_WINS+MAX_FRIENDS_NUM 20#define MAX_WINDOW_SLOTS N_DEFAULT_WINS+MAX_FRIENDS_NUM
21 21
22#ifndef TOXICVER
23#define TOXICVER "NOVER" //Use the -D flag to set this
24#endif
25
22typedef struct ToxWindow_ ToxWindow; 26typedef struct ToxWindow_ ToxWindow;
23 27
24struct ToxWindow_ { 28struct ToxWindow_ {