mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
paris changes
This commit is contained in:
parent
cc44801acd
commit
102361174a
1 changed files with 4 additions and 4 deletions
|
@ -37,13 +37,13 @@ public class GlobalConfig {
|
|||
if (value instanceof String) {
|
||||
data.edit().putString(key.name, (String) value).apply();
|
||||
} else if (value instanceof Integer) {
|
||||
data.edit().putInt(key.name, (Integer) value).apply();
|
||||
data.edit().putInt(key.name, (int) value).apply();
|
||||
} else if (value instanceof Boolean) {
|
||||
data.edit().putBoolean(key.name, (Boolean) value).apply();
|
||||
data.edit().putBoolean(key.name, (boolean) value).apply();
|
||||
} else if (value instanceof Long) {
|
||||
data.edit().putLong(key.name, (Long) value).apply();
|
||||
data.edit().putLong(key.name, (long) value).apply();
|
||||
} else if (value instanceof Float) {
|
||||
data.edit().putFloat(key.name, (Float) value).apply();
|
||||
data.edit().putFloat(key.name, (float) value).apply();
|
||||
} else {
|
||||
throw new IllegalArgumentException("Invalid global config value instance");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue