mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2026-08-28 05:45:03 -06:00
Value fixes
This commit is contained in:
parent
39a2cd57b2
commit
ba2257c724
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ public class LauncherPreferenceFragment extends PreferenceFragmentCompat impleme
|
|||
seek6.setMax(300);
|
||||
seek6.setSuffix(" %");
|
||||
|
||||
long freeMem = Runtime.getRuntime().freeMemory() / 1048576;
|
||||
int freeMem = (int) (Runtime.getRuntime().freeMemory() / 1048576l);
|
||||
|
||||
CustomSeekBarPreference seek7 = (CustomSeekBarPreference) findPreference("allocation");
|
||||
seek7.setMin(256);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue