mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-19 21:10:11 -07:00
Slight clean up of MCOptionsUtils (#1586)
* Clean up MCOptionUtils.java * Use of explicit type conversion to string.
This commit is contained in:
parent
bca639b809
commit
14d9d2b177
2 changed files with 11 additions and 23 deletions
|
|
@ -690,8 +690,8 @@ public class BaseMainActivity extends LoggableActivity {
|
|||
|
||||
//Load Minecraft options:
|
||||
MCOptionUtils.load();
|
||||
MCOptionUtils.set("overrideWidth", ""+CallbackBridge.windowWidth);
|
||||
MCOptionUtils.set("overrideHeight", ""+CallbackBridge.windowHeight);
|
||||
MCOptionUtils.set("overrideWidth", String.valueOf(CallbackBridge.windowWidth));
|
||||
MCOptionUtils.set("overrideHeight", String.valueOf(CallbackBridge.windowHeight));
|
||||
MCOptionUtils.save();
|
||||
getMcScale();
|
||||
// Should we do that?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue