mirror of
https://github.com/libretro/libretro-super
synced 2025-01-30 06:32:45 +00:00
(Core Info) Update 'supports_no_game' status, add 'single_purpose' flag (#1630)
This commit is contained in:
parent
3c36ac300f
commit
7371094f35
4
dist/info/00_example_libretro.info
vendored
4
dist/info/00_example_libretro.info
vendored
@ -71,12 +71,14 @@
|
||||
# load_subsystem = "false"
|
||||
# Whether or not the core requires an external file to work:
|
||||
# supports_no_game = "false"
|
||||
# Does the core have a single purpose? Does it represent one game or application, requiring predetermined support files or no external data? Used to indicate to a frontend that the core may be presented/handled independently from 'regular' cores that run a variety of content.
|
||||
# single_purpose = "false"
|
||||
# Name of the database that the core supports (optional):
|
||||
# database = "Nintendo - Nintendo Entertainment System|Nintendo - Famicom Disk System"
|
||||
# Does the core support/require support for libretro-gl or other hardware-acceleration in the frontend?
|
||||
# hw_render = "false"
|
||||
# Which hardware-rendering APIs does the core support? Delimited by pipe characters.
|
||||
required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0"
|
||||
# required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0"
|
||||
# Does the core require ongoing access to the file after loading? Mostly used for softpatching and streaming of data
|
||||
# needs_fullpath = "false"
|
||||
# Does the core support the libretro disk control interface for swapping disks on the fly?
|
||||
|
2
dist/info/2048_libretro.info
vendored
2
dist/info/2048_libretro.info
vendored
@ -14,7 +14,9 @@ systemid = "2048"
|
||||
manufacturer = "N/A"
|
||||
|
||||
# Libretro Features
|
||||
database = "2048"
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "true"
|
||||
savestate_features = "serialized"
|
||||
cheats = "false"
|
||||
|
2
dist/info/craft_libretro.info
vendored
2
dist/info/craft_libretro.info
vendored
@ -14,7 +14,9 @@ systemname = "Minecraft Game Clone"
|
||||
systemid = "craft"
|
||||
|
||||
# Libretro Features
|
||||
database = "Minecraft"
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "false"
|
||||
savestate_features = "null"
|
||||
cheats = "false"
|
||||
|
3
dist/info/dinothawr_libretro.info
vendored
3
dist/info/dinothawr_libretro.info
vendored
@ -15,7 +15,8 @@ systemid = "dinothawr"
|
||||
|
||||
# Libretro Features
|
||||
database = "Dinothawr"
|
||||
supports_no_game = "false"
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "false"
|
||||
savestate_features = "null"
|
||||
libretro_saves = "true"
|
||||
|
1
dist/info/gong_libretro.info
vendored
1
dist/info/gong_libretro.info
vendored
@ -15,6 +15,7 @@ manufacturer = "N/A"
|
||||
|
||||
# Libretro Features
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "true"
|
||||
savestate_features = "serialized"
|
||||
cheats = "false"
|
||||
|
1
dist/info/mrboom_libretro.info
vendored
1
dist/info/mrboom_libretro.info
vendored
@ -14,6 +14,7 @@ systemid = "bomberman"
|
||||
|
||||
# Libretro Features
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
database = "MrBoom"
|
||||
savestate = "true"
|
||||
savestate_features = "deterministic"
|
||||
|
3
dist/info/nxengine_libretro.info
vendored
3
dist/info/nxengine_libretro.info
vendored
@ -14,7 +14,8 @@ systemid = "nxengine"
|
||||
|
||||
# Libretro Features
|
||||
database = "Cave Story"
|
||||
supports_no_game = "false"
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "false"
|
||||
cheats = "false"
|
||||
input_descriptors = "true"
|
||||
|
1
dist/info/thepowdertoy_libretro.info
vendored
1
dist/info/thepowdertoy_libretro.info
vendored
@ -13,6 +13,7 @@ systemname = "Physics Toy"
|
||||
|
||||
# Libretro Features
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "true"
|
||||
savestate_features = "serialized"
|
||||
cheats = "false"
|
||||
|
3
dist/info/xrick_libretro.info
vendored
3
dist/info/xrick_libretro.info
vendored
@ -14,7 +14,8 @@ systemid = "xrick"
|
||||
|
||||
# Libretro Features
|
||||
database = "Rick Dangerous"
|
||||
supports_no_game = "false"
|
||||
supports_no_game = "true"
|
||||
single_purpose = "true"
|
||||
savestate = "false"
|
||||
|
||||
notes = "(!) XRick requires data ROM 'data.zip'.|(!) Load Content 'data.zip'"
|
||||
|
Loading…
x
Reference in New Issue
Block a user