mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +00:00
Merge branch 'master' into next
This commit is contained in:
commit
dfbbab35f4
2 changed files with 7 additions and 2 deletions
|
@ -3465,6 +3465,11 @@ static void Command_Version_f(void)
|
||||||
CONS_Printf("\x85" "DEBUG " "\x80");
|
CONS_Printf("\x85" "DEBUG " "\x80");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// DEVELOP build
|
||||||
|
#ifdef DEVELOP
|
||||||
|
CONS_Printf("\x87" "DEVELOP " "\x80");
|
||||||
|
#endif
|
||||||
|
|
||||||
CONS_Printf("\n");
|
CONS_Printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2002,7 +2002,7 @@ static boolean P_LoadRawBlockMap(UINT8 *data, size_t count, const char *lumpname
|
||||||
if (!count || count >= 0x20000)
|
if (!count || count >= 0x20000)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
CONS_Printf("Reading blockmap lump for pk3...\n");
|
//CONS_Printf("Reading blockmap lump for pk3...\n");
|
||||||
|
|
||||||
// no need to malloc anything, assume the data is uncompressed for now
|
// no need to malloc anything, assume the data is uncompressed for now
|
||||||
count /= 2;
|
count /= 2;
|
||||||
|
|
Loading…
Reference in a new issue