From 62194803fb9a649d25686b56f0959d42b364178d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Apr 2013 06:11:37 +0200 Subject: [PATCH] (iOS) Module info detail - change emuname to corename - emuname too specific - libretro cores can also be GL demos/games/apps --- ios/RetroArch/RAModuleInfoList.m | 4 ++-- ios/modules/desmume_libretro.info | 2 +- ios/modules/example.info | 11 +++++------ ios/modules/fb_alpha_libretro.info | 2 +- ios/modules/gambatte_libretro.info | 2 +- ios/modules/genesis_plus_gx_libretro.info | 2 +- ios/modules/mednafen_ngp_libretro.info | 2 +- ios/modules/mednafen_pce_fast_libretro.info | 2 +- ios/modules/mednafen_psx_libretro.info | 2 +- ios/modules/mednafen_vb_libretro.info | 2 +- ios/modules/mednafen_wswan_libretro.info | 2 +- ios/modules/nestopia_libretro.info | 2 +- ios/modules/nxengine_libretro.info | 2 +- ios/modules/pcsx_rearmed_libretro.info | 2 +- ios/modules/prboom_libretro.info | 2 +- ios/modules/snes9x_next_libretro.info | 2 +- ios/modules/stella_libretro.info | 2 +- ios/modules/tyrquake_libretro.info | 2 +- ios/modules/vba_next_libretro.info | 2 +- 19 files changed, 24 insertions(+), 25 deletions(-) diff --git a/ios/RetroArch/RAModuleInfoList.m b/ios/RetroArch/RAModuleInfoList.m index 590f0d656b..64311028e4 100644 --- a/ios/RetroArch/RAModuleInfoList.m +++ b/ios/RetroArch/RAModuleInfoList.m @@ -13,8 +13,8 @@ * If not, see . */ -static NSString* const labels[3] = {@"Emulator Name", @"Manufacturer", @"Name"}; -static const char* const keys[3] = {"emuname", "manufacturer", "systemname"}; +static NSString* const labels[3] = {@"Core Name", @"Developer", @"Name"}; +static const char* const keys[3] = {"corename", "manufacturer", "systemname"}; static NSString* const sectionNames[2] = {@"Emulator", @"Hardware"}; static const uint32_t sectionSizes[2] = {1, 2}; diff --git a/ios/modules/desmume_libretro.info b/ios/modules/desmume_libretro.info index 4ec998c734..7fa5ba8f95 100644 --- a/ios/modules/desmume_libretro.info +++ b/ios/modules/desmume_libretro.info @@ -1,5 +1,5 @@ display_name = "Nintendo DS" recommended_extensions = "nds" -emuname = "DeSmuME" +corename = "DeSmuME" manufacturer = "Nintendo" systemname = "Nintendo DS" diff --git a/ios/modules/example.info b/ios/modules/example.info index d6174f49f1..a6b051a978 100644 --- a/ios/modules/example.info +++ b/ios/modules/example.info @@ -1,17 +1,16 @@ ## All data is optional, but helps improve user experience. -# Name displayed when the user is selecting an emulator. +# Name displayed when the user is selecting an core. # display_name = "NES / Famicom" # List of supported extensions. # supported_extensions = "nes|fds" -# Name the emulator core. -# emuname = "Nestopia" +# Name the core. +# corename = "Nestopia" -# The developer of the emulated device. +# The developer. # manufacturer = "Nintendo" -# The name of the emulated device. +# Name of the system that the emulator targets. # systemname = "Nintendo Entertainment System" - diff --git a/ios/modules/fb_alpha_libretro.info b/ios/modules/fb_alpha_libretro.info index dd0a829124..229b2aebc0 100644 --- a/ios/modules/fb_alpha_libretro.info +++ b/ios/modules/fb_alpha_libretro.info @@ -1,5 +1,5 @@ display_name = "Arcade" supported_extensions = "zip|ZIP" -emuname = "Final Burn Alpha" +corename = "Final Burn Alpha" manufacturer = "Various" systemname = "Arcade (various)" diff --git a/ios/modules/gambatte_libretro.info b/ios/modules/gambatte_libretro.info index f5ee6ae08f..123ac1c9cf 100644 --- a/ios/modules/gambatte_libretro.info +++ b/ios/modules/gambatte_libretro.info @@ -1,5 +1,5 @@ display_name = "Game Boy / Game Boy Color" supported_extensions = "gb|gbc|dmg" -emuname = "gambatte" +corename = "gambatte" manufacturer = "Nintendo" systemname = "Game Boy Color" diff --git a/ios/modules/genesis_plus_gx_libretro.info b/ios/modules/genesis_plus_gx_libretro.info index f9d3ce29f7..7c5ecf20e6 100644 --- a/ios/modules/genesis_plus_gx_libretro.info +++ b/ios/modules/genesis_plus_gx_libretro.info @@ -1,6 +1,6 @@ display_name = "Sega (MS/GG/MD/CD)" supported_extensions = "md|smd|gen|sms|gg|sg|bin|cue|ios" -emuname = "Genesis Plus GX" +corename = "Genesis Plus GX" manufacturer = "Sega" systemname = "Sega (Various)" diff --git a/ios/modules/mednafen_ngp_libretro.info b/ios/modules/mednafen_ngp_libretro.info index 6c6f672b99..9213f37e69 100644 --- a/ios/modules/mednafen_ngp_libretro.info +++ b/ios/modules/mednafen_ngp_libretro.info @@ -1,6 +1,6 @@ display_name = "Neo Geo Pocket (Color)" supported_extensions = "ngp|ngc" -emuname = "Mednafen Neopop" +corename = "Mednafen Neopop" manufacturer = "SNK" systemname = "Neo Geo Pocket (Color)" diff --git a/ios/modules/mednafen_pce_fast_libretro.info b/ios/modules/mednafen_pce_fast_libretro.info index 22279a08e4..e327a28b1b 100644 --- a/ios/modules/mednafen_pce_fast_libretro.info +++ b/ios/modules/mednafen_pce_fast_libretro.info @@ -1,6 +1,6 @@ display_name = "PC Engine/TurboGrafx-16" supported_extensions = "pce|sgx|cue" -emuname = "Mednafen PCE Fast" +corename = "Mednafen PCE Fast" manufacturer = "NEC" systemname = "PC Engine/TurboGrafx-16" diff --git a/ios/modules/mednafen_psx_libretro.info b/ios/modules/mednafen_psx_libretro.info index 5d1b2d54e0..5c748ec0c0 100644 --- a/ios/modules/mednafen_psx_libretro.info +++ b/ios/modules/mednafen_psx_libretro.info @@ -1,6 +1,6 @@ display_name = "PlayStation" supported_extensions = "cue|toc" -emuname = "Mednafen PSX" +corename = "Mednafen PSX" manufacturer = "Sony" systemname = "PlayStation" diff --git a/ios/modules/mednafen_vb_libretro.info b/ios/modules/mednafen_vb_libretro.info index e889dd6390..3df42a5e14 100644 --- a/ios/modules/mednafen_vb_libretro.info +++ b/ios/modules/mednafen_vb_libretro.info @@ -1,6 +1,6 @@ display_name = "Virtual Boy" supported_extensions = "vb|vboy|bin" -emuname = "Mednafen VB" +corename = "Mednafen VB" manufacturer = "Nintendo" systemname = "Virtual Boy" diff --git a/ios/modules/mednafen_wswan_libretro.info b/ios/modules/mednafen_wswan_libretro.info index 29b02a79ac..ec1f5b9344 100644 --- a/ios/modules/mednafen_wswan_libretro.info +++ b/ios/modules/mednafen_wswan_libretro.info @@ -1,6 +1,6 @@ display_name = "WonderSwan (Color)" supported_extensions = "ws|wsc" -emuname = "Mednafen WonderSwan" +corename = "Mednafen WonderSwan" manufacturer = "Bandai" systemname = "WonderSwan (Color)" diff --git a/ios/modules/nestopia_libretro.info b/ios/modules/nestopia_libretro.info index cd3f8750c4..245c95604f 100644 --- a/ios/modules/nestopia_libretro.info +++ b/ios/modules/nestopia_libretro.info @@ -1,6 +1,6 @@ display_name = "NES / Famicom" supported_extensions = "nes|fds" -emuname = "Nestopia" +corename = "Nestopia" manufacturer = "Nintendo" systemname = "Nintendo Entertainment System" diff --git a/ios/modules/nxengine_libretro.info b/ios/modules/nxengine_libretro.info index 997b771c86..81ac6073fd 100644 --- a/ios/modules/nxengine_libretro.info +++ b/ios/modules/nxengine_libretro.info @@ -1,3 +1,3 @@ display_name = "NXEngine (Cave Story)" supported_extensions = "exe" -emuname = "NXEngine" +corename = "NXEngine" diff --git a/ios/modules/pcsx_rearmed_libretro.info b/ios/modules/pcsx_rearmed_libretro.info index 17734681a3..25d8d3dc2c 100644 --- a/ios/modules/pcsx_rearmed_libretro.info +++ b/ios/modules/pcsx_rearmed_libretro.info @@ -1,5 +1,5 @@ display_name = "PlayStation1" supported_extensions = "bin|cue|img|mdf|pbp|cbn|toc" -emuname = "PCSX ReARMed" +corename = "PCSX ReARMed" manufacturer = "Sony" systemname = "PlayStation" diff --git a/ios/modules/prboom_libretro.info b/ios/modules/prboom_libretro.info index a1012b43ef..c1a416515a 100644 --- a/ios/modules/prboom_libretro.info +++ b/ios/modules/prboom_libretro.info @@ -1,3 +1,3 @@ display_name = "PrBoom (DOOM)" supported_extensions = "wad|iwad" -emuname = "prboom" +corename = "prboom" diff --git a/ios/modules/snes9x_next_libretro.info b/ios/modules/snes9x_next_libretro.info index 0c4577ef7e..cd0776f95c 100644 --- a/ios/modules/snes9x_next_libretro.info +++ b/ios/modules/snes9x_next_libretro.info @@ -1,5 +1,5 @@ display_name = "SNES / Super Famicom" supported_extensions = "smc|fig|sfc|gd3|gd7|dx2|bsx|swc" -emuname = "SNES9x Next" +corename = "SNES9x Next" manufacturer = "Nintendo" systemname = "Super Nintendo Entertainment System" diff --git a/ios/modules/stella_libretro.info b/ios/modules/stella_libretro.info index 99b8e27eea..a45de89830 100644 --- a/ios/modules/stella_libretro.info +++ b/ios/modules/stella_libretro.info @@ -1,6 +1,6 @@ display_name = "Atari 2600" supported_extensions = "a26|bin" -emuname = "Stella" +corename = "Stella" manufacturer = "Atari" systemname = "Atari 2600" diff --git a/ios/modules/tyrquake_libretro.info b/ios/modules/tyrquake_libretro.info index cf2cd27b91..a12b75da38 100644 --- a/ios/modules/tyrquake_libretro.info +++ b/ios/modules/tyrquake_libretro.info @@ -1,3 +1,3 @@ display_name = "TyrQuake" supported_extensions = "pak" -emuname = "prboom" +corename = "prboom" diff --git a/ios/modules/vba_next_libretro.info b/ios/modules/vba_next_libretro.info index 359e618080..48e862b69a 100644 --- a/ios/modules/vba_next_libretro.info +++ b/ios/modules/vba_next_libretro.info @@ -1,5 +1,5 @@ display_name = "Game Boy Advance" supported_extensions = "gba" -emuname = "VBA Next" +corename = "VBA Next" manufacturer = "Nintendo" systemname = "Game Boy Advance"