diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-08-13 10:09:42 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-08-13 10:09:42 -0400 |
| commit | a8fcd50cd7c58a610169c38032ab3928a3229b82 (patch) | |
| tree | bb40162ea77737d391c3ce4eeb0e624aedeffcd8 /Source/Android/src | |
| parent | debd5b42cf9ca56a33d76f19b1f6b586f0de697c (diff) | |
[Android] Integer.toString isn't required in this string declaration. Concatenation handles this.
For example: "string" + 1 will just be concatenated as "string1" implicitly.
Diffstat (limited to 'Source/Android/src')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/GameListFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/GameListFragment.java b/Source/Android/src/org/dolphinemu/dolphinemu/GameListFragment.java index efcee489a8..8e4d2cb244 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/GameListFragment.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/GameListFragment.java @@ -49,7 +49,7 @@ public class GameListFragment extends Fragment for (int a = 0; a < intDirectories; ++a) { - String BrowseDir = NativeLibrary.GetConfig("Dolphin.ini", "General", "GCMPath" + Integer.toString(a), ""); + String BrowseDir = NativeLibrary.GetConfig("Dolphin.ini", "General", "GCMPath" + a, ""); File currentDir = new File(BrowseDir); File[]dirs = currentDir.listFiles(); try |
