Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.73 KB | None | 0 0
  1. diff -urpX nodiff bspc-2.1h/bspc.c bspc/bspc.c
  2. --- bspc-2.1h/bspc.c    2005-08-19 13:06:22.000000000 +0200
  3. +++ bspc/bspc.c 2006-03-27 00:30:26.000000000 +0200
  4. @@ -516,6 +516,7 @@ int main (int argc, char **argv)
  5.  
  6.     Log_Open("bspc.log");       //open a log file
  7.     Log_Print("BSPC version "BSPC_VERSION", %s %s\n", __DATE__, __TIME__);
  8. +   Log_Print("%s\n", WQ3_MESSAGE);
  9.  
  10.     DefaultCfg();
  11.     for (i = 1; i < argc; i++)
  12. diff -urpX nodiff bspc-2.1h/map.c bspc/map.c
  13. --- bspc-2.1h/map.c 2005-08-19 13:06:22.000000000 +0200
  14. +++ bspc/map.c  2006-03-27 00:29:54.000000000 +0200
  15. @@ -954,6 +954,7 @@ qboolean WriteMapFileSafe(FILE *fp)
  16.     if (fprintf(fp,"//=====================================================\n"
  17.             "//\n"
  18.             "// map file created with BSPC "BSPC_VERSION"\n"
  19. +           "// "WQ3_MESSAGE"\n"
  20.             "//\n"
  21.             "// BSPC is designed to decompile material in which you own the copyright\n"
  22.             "// or have obtained permission to decompile from the copyright owner. Unless\n"
  23. diff -urpX nodiff bspc-2.1h/qbsp.h bspc/qbsp.h
  24. --- bspc-2.1h/qbsp.h    2005-08-19 13:06:22.000000000 +0200
  25. +++ bspc/qbsp.h 2006-03-27 00:41:24.000000000 +0200
  26. @@ -38,6 +38,7 @@ Foundation, Inc., 51 Franklin St, Fifth
  27.  #include "l_qfiles.h"
  28.  
  29.  #define BSPC_VERSION       "2.1h"
  30. +#define WQ3_MESSAGE            "Customized for the WQ3 team v0.1"
  31.  
  32.  #define ME
  33.  #define DEBUG
  34. @@ -233,8 +234,8 @@ extern  char source[1024];
  35.  // map.c
  36.  //=============================================================================
  37.  
  38. -#define MAX_MAPFILE_PLANES         256000
  39. -#define MAX_MAPFILE_BRUSHES            65535
  40. +#define MAX_MAPFILE_PLANES         512000
  41. +#define MAX_MAPFILE_BRUSHES            (65535*2)
  42.  #define MAX_MAPFILE_BRUSHSIDES     (MAX_MAPFILE_BRUSHES*8)
  43.  #define MAX_MAPFILE_TEXINFO            8192
  44.  
  45. Only in bspc: Release
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement