Merge pull request #683 from illwieckz/patchheight

radiant: set MAX_PATCH_WIDTH and MAX_PATCH_HEIGHT to 32 like MAX_PATCH_SIZE in q3map2
This commit is contained in:
Timothee "TTimo" Besset 2022-07-31 12:20:04 -06:00 committed by GitHub
commit 39c88773d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -344,8 +344,8 @@ typedef struct {
#define MIN_PATCH_WIDTH 3 #define MIN_PATCH_WIDTH 3
#define MIN_PATCH_HEIGHT 3 #define MIN_PATCH_HEIGHT 3
#define MAX_PATCH_WIDTH 16 #define MAX_PATCH_WIDTH 32
#define MAX_PATCH_HEIGHT 16 #define MAX_PATCH_HEIGHT 32
// patch type info // patch type info
// type in lower 16 bits, flags in upper // type in lower 16 bits, flags in upper