Merge pull request #559 from Pan7/fixq3data7

Q3data: Fix warning format %d expects argument of type int
This commit is contained in:
Pan7 2017-08-19 03:25:18 +02:00 committed by GitHub
commit 366fa91888
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ void MD3_Dump( const char *filename ){
printf( " num tags: %d\n", header.numTags );
printf( " num surfaces: %d\n", header.numSurfaces );
printf( " num skins: %d\n", header.numSkins );
printf( " file size: %d\n", fileSize );
printf( " file size: %ld\n", fileSize );
printf( "--- TAGS ---\n" );
pTag = ( md3Tag_t * ) ( ( ( char * ) buffer ) + header.ofsTags );