mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-22 01:30:50 +00:00
Fixed compile error with clang
This commit is contained in:
parent
ce68905287
commit
53925f9f31
2 changed files with 5 additions and 5 deletions
|
@ -13,10 +13,10 @@ REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/tiny
|
|||
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/oggvorbis/*.h
|
||||
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/oggvorbis/*.c
|
||||
|
||||
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.h
|
||||
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.c
|
||||
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.cpp
|
||||
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.h
|
||||
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.c
|
||||
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.cpp
|
||||
|
||||
astyle.exe -v -Q --options=astyle-options.ini --recursive shaders/*.hlsl
|
||||
|
||||
pause
|
||||
pause
|
||||
|
|
|
@ -3596,7 +3596,7 @@ idFile* idFileSystemLocal::GetZipFile( const char* fileName, bool memFile )
|
|||
{
|
||||
if( fs_debugResources.GetBool() )
|
||||
{
|
||||
idLib::Printf( "MEM: Allocating %05d bytes for a resource load\n", rc.length );
|
||||
idLib::Printf( "MEM: Allocating %05llu bytes for a resource load\n", rc.length );
|
||||
}
|
||||
buf = ( byte* )Mem_Alloc( rc.length, TAG_TEMP );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue