dolphin/Source/Android
Lioncash 07d729daa2 [Android] Prevent duplicate duplicate items from being in the game list at one time.
Previously it was possible for a game with the same path and name to be in the list as another. This is annoying because duplicates ae (obviously) no different from the initial item.

This prevents duplicates from entering the list.

The way this works is:

1. We get the final list of items to add to the list.

2. Loop through it using two indices, which, for this explanation I'll call [item] and [itemAfter]

We compare path name at item with index [item] and the path name at item with index [itemAfter]
To phrase this numerically comparison works like so:

for (int i = 0; i < listSize; i++)
{
    if (i+1 < listSize)
        item[i].getPath().equals(item[i+1].getPath())
}

3. For each path comparison that is true, remove item at [indexNext].
2013-08-17 14:28:50 -04:00
..
.settings Android mega commit of trash. 2013-03-19 21:53:09 -05:00
assets [Android] Support clicking on games in the folder browser to add the folder currently in. Mostly for derps that keep trying to run the game from the folder browser. 2013-06-27 04:47:39 -05:00
jni Update the ant files to build the APK from terminal 2013-04-18 23:26:00 -05:00
libs [Android] Remove SimonVT menudrawer library. Move to Google's support library for their navigation drawer support. Overall cleanup. 2013-06-22 07:45:05 -05:00
res [Android] Change the Game List items to be formatted similarly to how the folder browser is. Also ensure the 'no banner' icon scales down to the same size as the other banners. 2013-08-17 13:25:40 -04:00
src/org/dolphinemu/dolphinemu [Android] Prevent duplicate duplicate items from being in the game list at one time. 2013-08-17 14:28:50 -04:00
.classpath [Android] Ensure that required dependencies are actually exported along with everything else when the Android version builds. Without this, the support libs will not export and cause the emulator to crash upon being executed. 2013-08-17 12:26:43 -04:00
.gitignore Android mega commit of trash. 2013-03-19 21:53:09 -05:00
.project Change Android project name to dolphin emulator 2013-04-24 09:00:14 -05:00
AndroidManifest.xml [Android] Oops. Keep the screenOrientation setting to landscape. 2013-07-16 09:08:41 -05:00
android.toolchain.cmake Get latest android cmake to support NDK 8e 2013-04-13 15:09:05 -05:00
build.xml Android mega commit of trash. 2013-03-19 21:53:09 -05:00
custom_rules.xml Update the ant files to build the APK from terminal 2013-04-18 23:26:00 -05:00
project.properties [Android] Fix ant build? 2013-06-22 08:06:39 -05:00