(Android Java) Disregard 'libretro_' prefix - should just add all

cores it can find in assets/cores
This commit is contained in:
twinaphex 2013-10-30 01:16:28 +01:00
parent 9e4b672634
commit 6a449e898d

View File

@ -70,11 +70,8 @@ public final class CoreSelection extends ListActivity {
if (hasNeonVersion)
continue;
}
// Allow both libretro-core.so and libretro_core.so.
if (libName.startsWith("libretro")) {
adapter.add(new ModuleWrapper(this, lib, core_config));
}
adapter.add(new ModuleWrapper(this, lib, core_config));
}
this.setVolumeControlStream(AudioManager.STREAM_MUSIC);