mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-21 09:01:56 -07:00
Updates
This commit is contained in:
parent
790b211040
commit
9e3fdedaff
3 changed files with 8 additions and 1 deletions
|
|
@ -99,6 +99,7 @@ public class BaseMainActivity extends LoggableActivity {
|
|||
private LinearLayout contentCanvas;
|
||||
private AWTSurfaceView contentCanvasView;
|
||||
*/
|
||||
private boolean resuming;
|
||||
private boolean lastEnabled = false;
|
||||
private boolean lastGrab = false;
|
||||
private boolean isExited = false;
|
||||
|
|
|
|||
|
|
@ -298,7 +298,9 @@ public class PojavLoginActivity extends BaseActivity
|
|||
}
|
||||
|
||||
private void initMain() throws Throwable {
|
||||
mkdirs(Tools.DIR_ACCOUNT_NEW);
|
||||
PojavMigrator.migrateAccountData(this);
|
||||
|
||||
if (!PojavMigrator.migrateGameDir()) {
|
||||
mkdirs(Tools.DIR_GAME_NEW);
|
||||
mkdirs(Tools.DIR_GAME_NEW + "/config");
|
||||
|
|
|
|||
|
|
@ -196,7 +196,11 @@ public abstract class HandleView extends View implements ViewPositionListener, V
|
|||
if (mActionPopupShower == null) {
|
||||
mActionPopupShower = new Runnable() {
|
||||
public void run() {
|
||||
try {
|
||||
mActionPopupWindow.show();
|
||||
} catch (Throwable th) {
|
||||
th.printStackTrace();
|
||||
}
|
||||
}
|
||||
};
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue