let OS handle key modifers (fixes number buttons w/ French keyboard)

This commit is contained in:
Chris Danford
2006-06-10 20:33:56 +00:00
parent 3b68311391
commit 8c4cedf63f
13 changed files with 113 additions and 118 deletions
+2 -2
View File
@@ -3596,9 +3596,9 @@ static RString GetDeviceButtonsLocalized( const vector<EditButton> &veb, const M
DeviceInput diPress = editmap.button[*eb][s];
DeviceInput diHold = editmap.hold[*eb][s];
if( diPress.IsValid() )
vsPress.push_back( DeviceButtonToLocalizedString(diPress.button) );
vsPress.push_back( DeviceButtonToLocalizedAndTranslatedString(diPress.button) );
if( diHold.IsValid() )
vsHold.push_back( DeviceButtonToLocalizedString(diHold.button) );
vsHold.push_back( DeviceButtonToLocalizedAndTranslatedString(diHold.button) );
}
}