mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
Merge pull request #552 from Pan7/fixq3data3
Q3data: Fix warning format specifies type int but the argument has ty…
This commit is contained in:
commit
e40228629e
1 changed files with 1 additions and 1 deletions
|
@ -1107,7 +1107,7 @@ void Cmd_Video( void ){
|
|||
|
||||
printf( "\n" );
|
||||
|
||||
printf( "Total size: %i\n", ftell( output ) );
|
||||
printf( "Total size: %ld\n", ftell( output ) );
|
||||
printf( "Average error: %f\n", sumError / ( frame - startframe ) );
|
||||
printf( "Max error: %f\n", maxError );
|
||||
|
||||
|
|
Loading…
Reference in a new issue