mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
[Android] Integer.toString isn't required in this string declaration. Concatenation handles this.
For example: "string" + 1 will just be concatenated as "string1" implicitly.
This commit is contained in:
parent
debd5b42cf
commit
a8fcd50cd7
@ -49,7 +49,7 @@ public class GameListFragment extends Fragment
|
|||||||
|
|
||||||
for (int a = 0; a < intDirectories; ++a)
|
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 currentDir = new File(BrowseDir);
|
||||||
File[]dirs = currentDir.listFiles();
|
File[]dirs = currentDir.listFiles();
|
||||||
try
|
try
|
||||||
|
Loading…
Reference in New Issue
Block a user