libretro: Fix documentation for RETRO_GET_MIDI_INTERFACE

As pointed out by @bbbradsmith in https://github.com/libretro/libretro-common/issues/209 , `RETRO_ENVIRONMENT_GET_MIDI_INTERFACE` is a pointer to a struct, rather than a struct array. This updates the documentation to reflect that.

Fixes https://github.com/libretro/libretro-common/issues/209
This commit is contained in:
Rob Loach 2024-05-17 12:54:31 -04:00 committed by GitHub
parent 41db4b022a
commit 1a9c4df8f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1763,7 +1763,7 @@ enum retro_mod
/** /**
* Gets an interface that the core can use for raw MIDI I/O. * Gets an interface that the core can use for raw MIDI I/O.
* *
* @param[out] data <tt>struct retro_midi_interface **</tt>. * @param[out] data <tt>struct retro_midi_interface *</tt>.
* Pointer to the MIDI interface. * Pointer to the MIDI interface.
* May be \c NULL. * May be \c NULL.
* @return \c true if the environment call is available, * @return \c true if the environment call is available,