mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-29 02:03:03 +08:00
libobs: Use correct pointer
This is not supposed to pass the graphics context pointer -- it's supposed to pass the device pointer held by the graphics context object.
This commit is contained in:
@@ -293,7 +293,8 @@ void *gs_get_device_obj(void)
|
||||
if (!gs_valid("gs_get_device_obj"))
|
||||
return NULL;
|
||||
|
||||
return thread_graphics->exports.device_get_device_obj(thread_graphics);
|
||||
return thread_graphics->exports.device_get_device_obj(
|
||||
thread_graphics->device);
|
||||
}
|
||||
|
||||
const char *gs_get_device_name(void)
|
||||
|
||||
Reference in New Issue
Block a user