Fix warning about wrong printf modifier for size_t. (PR #1241)

This commit is contained in:
Andrea 2023-06-18 20:21:29 +01:00 committed by GitHub
parent 2759527f0d
commit eead359a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5100,8 +5100,8 @@ Update_t CmdNTSC (int nArgs)
ConsoleBufferPush( pPrefixText ); // TODO: Add a ": " separator
#if _DEBUG
LogOutput( "Filename.length.1: %d\n", len1 );
LogOutput( "Filename.length.2: %d\n", len2 );
LogOutput( "Filename.length.1: %" SIZE_T_FMT "\n", len1 );
LogOutput( "Filename.length.2: %" SIZE_T_FMT "\n", len2 );
OutputDebugString( sPaletteFilePath.c_str() );
#endif
// File path is too long