Set RETRO_ENVIRONMENT_GET_CORE_DATA and RETRO_ENVIRONMENT_SET_CORE_DATA as experimental
This commit is contained in:
parent
3edbf1e1c8
commit
7201865c2f
|
@ -68,7 +68,13 @@ struct retro_core_t
|
|||
|
||||
unsigned poll_type;
|
||||
uint8_t flags;
|
||||
void *core_data; /* Arbitrary core data. @see RETRO_ENVIRONMENT_GET_CORE_DATA */
|
||||
|
||||
/**
|
||||
* Arbitrary core data.
|
||||
*
|
||||
* @see RETRO_ENVIRONMENT_GET_CORE_DATA
|
||||
*/
|
||||
void *core_data;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -2584,7 +2584,7 @@ enum retro_mod
|
|||
*
|
||||
* @see RETRO_ENVIRONMENT_GET_CORE_DATA
|
||||
*/
|
||||
#define RETRO_ENVIRONMENT_SET_CORE_DATA 81
|
||||
#define RETRO_ENVIRONMENT_SET_CORE_DATA (81 | RETRO_ENVIRONMENT_EXPERIMENTAL)
|
||||
|
||||
/**
|
||||
* Gets a pointer to arbitrary data for the actively running core.
|
||||
|
@ -2597,7 +2597,7 @@ enum retro_mod
|
|||
*
|
||||
* @see RETRO_ENVIRONMENT_SET_CORE_DATA
|
||||
*/
|
||||
#define RETRO_ENVIRONMENT_GET_CORE_DATA 82
|
||||
#define RETRO_ENVIRONMENT_GET_CORE_DATA (82 | RETRO_ENVIRONMENT_EXPERIMENTAL)
|
||||
|
||||
/**@}*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue