diff --git a/include/misc.h b/include/misc.h index 4180a3bdb..d5effb4b1 100644 --- a/include/misc.h +++ b/include/misc.h @@ -88,7 +88,6 @@ OF THIS SOFTWARE. #define MAXGPUSCREENS 16 #endif #define MAXCLIENTS 2048 -#define LIMITCLIENTS 256 /* Must be a power of 2 and <= MAXCLIENTS */ #define MAXFORMATS 8 #ifndef MAXDEVICES #define MAXDEVICES 256 /* input devices */ diff --git a/os/osdep.h b/os/osdep.h index a9934071c..94a1f486d 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -225,4 +225,6 @@ Ones(unsigned long mask) } #endif +#define LIMITCLIENTS 256 /* Must be a power of 2 and <= MAXCLIENTS */ + #endif /* _OSDEP_H_ */