diff options
| author | Stenzek <stenzek@users.noreply.github.com> | 2018-02-20 01:19:45 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-20 01:19:45 +1000 |
| commit | 93c502fef8980bf6f6db7316738857bb0818debf (patch) | |
| tree | 7e14390a62a600c8ec89ad39a77919748d6152f1 /Source/Android/app/src/main/java | |
| parent | 456c2f42c350e15402eea169a2cc87878327c1fc (diff) | |
| parent | 0dddaf9d7d0837a574c6e8d255bebb3947f09a0e (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.java | 2 |
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 { |
