libretro.h: Fix contradictory comment

retro_get_system_info() says it can be called even before retro_init(), which means retro_deinit() doesn't need to be called at all. Mentioning deinit() in the struct definition is misleading and incorrect.
This commit is contained in:
Alcaro 2020-08-23 17:39:55 +02:00
parent 86520cbd07
commit e4022ab416

View File

@ -2672,7 +2672,7 @@ struct retro_input_descriptor
struct retro_system_info
{
/* All pointers are owned by libretro implementation, and pointers must
* remain valid until retro_deinit() is called. */
* remain valid until it is unloaded. */
const char *library_name; /* Descriptive name of library. Should not
* contain any version numbers, etc. */