mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 02:21:26 +02:00
[Android] Remove accidental fragment tag in GameListActivity (it was useless, since it's an empty string)
This commit is contained in:
parent
2025f00f88
commit
ee32c8b4e9
@ -158,7 +158,7 @@ public final class GameListActivity extends Activity
|
||||
mCurFragmentNum = 0;
|
||||
final GameListFragment gameList = new GameListFragment();
|
||||
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
||||
ft.replace(R.id.content_frame, gameList, "");
|
||||
ft.replace(R.id.content_frame, gameList);
|
||||
ft.commit();
|
||||
invalidateOptionsMenu();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user