libretro / FBNeo

FBNeo - We are Team FBNeo.
https://neo-source.com
Other
229 stars 136 forks source link

bool retro_load_game always return true #1091

Closed Turro75 closed 3 weeks ago

Turro75 commented 3 weeks ago

I'm working on a libretro frontend and it turned out that retro_load_game always returns true even if loading failed (i.e. missing rom).

Assuming there is a reason for that, how can I understand (I mean in the code) that loading was not successful?

barbudreadmon commented 3 weeks ago

It's returning true so that an error message is displayed instead of silently closing.

how can I understand (I mean in the code) that loading was not successful?

Through the libretro api ? I suppose you can't.

Turro75 commented 3 weeks ago

ok, I'll reboot the device.