mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Android: Remove synchronized keywords from EmulationState
These methods are only being called from the GUI thread anyway...
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user