diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-11-16 15:17:37 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-11-16 15:17:37 -0500 |
| commit | ee32c8b4e9cc621a3cc9b4e8b897204322248f53 (patch) | |
| tree | b2180fd884878ed67608fded110e7a0e813b38af /Source/Android/src | |
| parent | 2025f00f8836f529fecf6b6caded24c5db158357 (diff) | |
[Android] Remove accidental fragment tag in GameListActivity (it was useless, since it's an empty string)
Diffstat (limited to 'Source/Android/src')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListActivity.java b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListActivity.java index bdf4f7c314..940632a8ea 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListActivity.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListActivity.java @@ -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(); } |
