diff --git a/reaction/game/bg_lib.h b/reaction/game/bg_lib.h index efaefc2f..50dfafd4 100644 --- a/reaction/game/bg_lib.h +++ b/reaction/game/bg_lib.h @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.7 2005/09/18 18:00:51 makro +// no message +// // Revision 1.6 2005/09/13 02:33:17 jbravo // Adding new callvote gametype:map // @@ -91,6 +94,3 @@ int abs(int n); double fabs(double x); double acos(double x); -// JBravo: moved from bg_lib.c so all can use -#define is_digit(c) ((unsigned)to_digit(c) <= 9) -#define to_digit(c) ((c) - '0') diff --git a/reaction/game/q_shared.h b/reaction/game/q_shared.h index 330a00ec..ca642d2e 100644 --- a/reaction/game/q_shared.h +++ b/reaction/game/q_shared.h @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.16 2005/09/18 18:01:01 makro +// no message +// // Revision 1.15 2005/02/15 16:33:39 makro // Tons of updates (entity tree attachment system, UI vectors) // @@ -1471,6 +1474,11 @@ typedef struct { #define Square(x) ((x)*(x)) +// Makro - moved from bg_lic.c so all can use :P +// JBravo: moved from bg_lib.c so all can use +#define is_digit(c) ((unsigned)to_digit(c) <= 9) +#define to_digit(c) ((c) - '0') + // real time //=============================================