mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 08:49:47 +00:00
Core option category adjustments
This commit is contained in:
parent
bd6b9ef304
commit
e4c955ec2e
11
libretro.cpp
11
libretro.cpp
@ -4863,17 +4863,16 @@ void retro_set_environment(retro_environment_t cb)
|
||||
environ_cb = cb;
|
||||
|
||||
libretro_supports_option_categories = false;
|
||||
libretro_set_core_options(environ_cb,
|
||||
&libretro_supports_option_categories);
|
||||
libretro_set_core_options(environ_cb, &libretro_supports_option_categories);
|
||||
|
||||
vfs_iface_info.required_interface_version = 1;
|
||||
vfs_iface_info.iface = NULL;
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_VFS_INTERFACE, &vfs_iface_info))
|
||||
filestream_vfs_init(&vfs_iface_info);
|
||||
filestream_vfs_init(&vfs_iface_info);
|
||||
|
||||
if(environ_cb(RETRO_ENVIRONMENT_GET_LED_INTERFACE, &led_interface))
|
||||
if (led_interface.set_led_state && !led_state_cb)
|
||||
led_state_cb = led_interface.set_led_state;
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_LED_INTERFACE, &led_interface))
|
||||
if (led_interface.set_led_state && !led_state_cb)
|
||||
led_state_cb = led_interface.set_led_state;
|
||||
|
||||
input_set_env(cb);
|
||||
|
||||
|
@ -59,8 +59,8 @@ struct retro_core_option_v2_category option_cats_us[] = {
|
||||
},
|
||||
{
|
||||
"osd",
|
||||
"Onscreen Notifications",
|
||||
"Change the notifications being shown onscreen."
|
||||
"On-Screen Display",
|
||||
"Change notifications being shown on-screen."
|
||||
},
|
||||
{
|
||||
"input",
|
||||
@ -79,7 +79,7 @@ struct retro_core_option_v2_category option_cats_us[] = {
|
||||
},
|
||||
{
|
||||
"hacks",
|
||||
"Emulation hacks",
|
||||
"Emulation Hacks",
|
||||
"Change processor overclocking and emulation accuracy settings affecting low-level performance and compatibility."
|
||||
},
|
||||
{ NULL, NULL, NULL },
|
||||
|
Loading…
Reference in New Issue
Block a user