Hi,
I’m coding/debuging a frontend written in python. One of the features that I need is to access the core options available. Example, retroarch is able to list several coreoptions from the snes9x core like:
snes9x_aspect = "4:3"
snes9x_audio_interpolation = "gaussian"
snes9x_blargg = "disabled"
snes9x_block_invalid_vram_access = "enabled"
snes9x_echo_buffer_hack = "disabled"
snes9x_gfx_clip = "enabled"
snes9x_gfx_hires = "enabled"
At first, i do need to be able to list them, and them to set them. I looking on the documentation and on the libretro.h, didn´t quite find it yet.
Thanks for any help in advance.