Add note to comment
This commit is contained in:
parent
6d71ea6529
commit
3e6fdaf3e5
10
driver.h
10
driver.h
|
@ -177,11 +177,9 @@ enum
|
||||||
| DRIVER_MENU \
|
| DRIVER_MENU \
|
||||||
| DRIVERS_VIDEO_INPUT )
|
| DRIVERS_VIDEO_INPUT )
|
||||||
|
|
||||||
typedef struct driver
|
/* TODO/FIXME - comment needs to be moved to each respective driver */
|
||||||
{
|
|
||||||
struct retro_callbacks retro_ctx;
|
|
||||||
|
|
||||||
/* Set this to true if the platform in question needs to 'own'
|
/* Set this to true if the platform in question needs to 'own'
|
||||||
* the respective handle and therefore skip regular RetroArch
|
* the respective handle and therefore skip regular RetroArch
|
||||||
* driver teardown/reiniting procedure.
|
* driver teardown/reiniting procedure.
|
||||||
*
|
*
|
||||||
|
@ -193,6 +191,10 @@ typedef struct driver
|
||||||
*
|
*
|
||||||
* Typically, if a driver intends to make use of this, it should
|
* Typically, if a driver intends to make use of this, it should
|
||||||
* set this to true at the end of its 'init' function. */
|
* set this to true at the end of its 'init' function. */
|
||||||
|
|
||||||
|
typedef struct driver
|
||||||
|
{
|
||||||
|
struct retro_callbacks retro_ctx;
|
||||||
} driver_t;
|
} driver_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue