summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
diff options
context:
space:
mode:
authorStenzek <stenzek@users.noreply.github.com>2018-02-20 01:19:45 +1000
committerGitHub <noreply@github.com>2018-02-20 01:19:45 +1000
commit93c502fef8980bf6f6db7316738857bb0818debf (patch)
tree7e14390a62a600c8ec89ad39a77919748d6152f1 /Source/Android/app/src/main/java
parent456c2f42c350e15402eea169a2cc87878327c1fc (diff)
parent0dddaf9d7d0837a574c6e8d255bebb3947f09a0e (diff)
Merge pull request #6330 from stenzek/resizing
Improve handling of surface change/resize events in graphics backends
Diffstat (limited to 'Source/Android/app/src/main/java')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.java
index 39eb383ae7..c7e13a9999 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/EmulationFragment.java
@@ -420,8 +420,8 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
else if (state == State.PAUSED)
{
Log.debug("[EmulationFragment] Resuming emulation.");
- NativeLibrary.UnPauseEmulation();
NativeLibrary.SurfaceChanged(mSurface);
+ NativeLibrary.UnPauseEmulation();
}
else
{