mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fix CXX_BUILD
This commit is contained in:
parent
f1b6a0dfb1
commit
2588f51ff2
1 changed files with 2 additions and 1 deletions
|
@ -12707,7 +12707,8 @@ global_t *global_get_ptr(void)
|
|||
**/
|
||||
static void *video_thread_get_ptr(struct rarch_state *p_rarch)
|
||||
{
|
||||
const thread_video_t *thr = VIDEO_DRIVER_GET_PTR_INTERNAL(true);
|
||||
void *data = VIDEO_DRIVER_GET_PTR_INTERNAL(true);
|
||||
const thread_video_t *thr = (const thread_video_t*)data;
|
||||
if (thr)
|
||||
return thr->driver_data;
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue