]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - bspfile.h
keysym2ucs: Delete. Was only used for the GLX client which no longer exists
[xonotic/darkplaces.git] / bspfile.h
index b1bdc350289644d62ed899992e9a865aac4da97d..1341b9e07aa8c470b6eb92e5860afb223ed4dfcc 100644 (file)
--- a/bspfile.h
+++ b/bspfile.h
@@ -18,6 +18,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 */
 
+#ifndef BSPFILE_H
+#define BSPFILE_H
 
 #define MAX_MAP_HULLS 16 // Q1BSP has 4, Hexen2 Q1BSP has 8, MCBSP has 16
 
@@ -25,6 +27,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 
 #define BSPVERSION     29
+#define HLBSPVERSION 30
+#define _2PSBVERSION ('2' + 'P' * 256 + 'S' * 65536 + 'B' * 16777216)
+#define BSP2VERSION ('B' + 'S' * 256 + 'P' * 65536 + '2' * 16777216)
 
 typedef struct lump_s
 {
@@ -319,3 +324,4 @@ typedef struct dleaf_s
 } dleaf_t;
 */
 
+#endif