mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-15 19:28:53 +01:00
Changed uint to unsigned int for Windows build.
This commit is contained in:
parent
aedd7e67fa
commit
65aa165404
@ -1324,7 +1324,7 @@ void RetroFE::get_controls_config( )
|
|||||||
// Clear input queue before we start, but do attach joysticks
|
// Clear input queue before we start, but do attach joysticks
|
||||||
get_key( );
|
get_key( );
|
||||||
|
|
||||||
for ( uint c = 0; c < controls.size( ); c++ )
|
for ( unsigned int c = 0; c < controls.size( ); c++ )
|
||||||
{
|
{
|
||||||
|
|
||||||
keys.clear( );
|
keys.clear( );
|
||||||
@ -1360,7 +1360,7 @@ void RetroFE::get_controls_config( )
|
|||||||
if ( keys.size( ) )
|
if ( keys.size( ) )
|
||||||
{
|
{
|
||||||
controls_file << std::get<0>( controls[c] ) + " = ";
|
controls_file << std::get<0>( controls[c] ) + " = ";
|
||||||
for ( uint i = 0; i < keys.size( ); i++ )
|
for ( unsigned int i = 0; i < keys.size( ); i++ )
|
||||||
if ( i == 0 )
|
if ( i == 0 )
|
||||||
controls_file << keys[i];
|
controls_file << keys[i];
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user