mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Android: Remove synchronized keywords from EmulationState
These methods are only being called from the GUI thread anyway...
This commit is contained in:
parent
3eb07e9772
commit
2cd09b8eb3
1 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
|
|||
this.temporaryStatePath = temporaryStatePath;
|
||||
}
|
||||
|
||||
public synchronized void run(boolean isActivityRecreated)
|
||||
public void run(boolean isActivityRecreated)
|
||||
{
|
||||
if (isActivityRecreated)
|
||||
{
|
||||
|
@ -264,7 +264,7 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
|
|||
}
|
||||
}
|
||||
|
||||
public synchronized void newSurface()
|
||||
public void newSurface()
|
||||
{
|
||||
if (mRunWhenSurfaceIsValid)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue