mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Q3data: Fix warning format specifies type int but the argument has type long
This commit is contained in:
parent
1439c10043
commit
614f97d425
1 changed files with 1 additions and 1 deletions
|
@ -1107,7 +1107,7 @@ void Cmd_Video( void ){
|
||||||
|
|
||||||
printf( "\n" );
|
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( "Average error: %f\n", sumError / ( frame - startframe ) );
|
||||||
printf( "Max error: %f\n", maxError );
|
printf( "Max error: %f\n", maxError );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue