[Android] Missed a string key within updateConfigFile in UserPreferences.java. Fixed that.

This commit is contained in:
Lioncash 2013-10-09 00:48:55 -04:00
parent e71bce0cbd
commit 99de59d71e

View File

@ -223,7 +223,7 @@ public final class UserPreferences
config.setInt("input_back_behavior", Integer.parseInt(prefs.getString("input_back_behavior", "0")));
// Set the iCade profiles
config.setInt("input_autodetect_icade_profile_pad1", Integer.parseInt(prefs.getString("", "0")));
config.setInt("input_autodetect_icade_profile_pad1", Integer.parseInt(prefs.getString("input_autodetect_icade_profile_pad1", "0")));
config.setInt("input_autodetect_icade_profile_pad2", Integer.parseInt(prefs.getString("input_autodetect_icade_profile_pad2", "0")));
config.setInt("input_autodetect_icade_profile_pad3", Integer.parseInt(prefs.getString("input_autodetect_icade_profile_pad3", "0")));
config.setInt("input_autodetect_icade_profile_pad4", Integer.parseInt(prefs.getString("input_autodetect_icade_profile_pad4", "0")));