libobs-opengl: Fix compiler warning

Fix unused parameter warning.
master
mvji 2022-04-19 20:45:27 +02:00 committed by Jim
parent 9a8e50a100
commit c6029ac658
1 changed files with 3 additions and 0 deletions

View File

@ -312,6 +312,9 @@ void device_present(gs_device_t *device)
bool device_is_monitor_hdr(gs_device_t *device, void *monitor)
{
UNUSED_PARAMETER(device);
UNUSED_PARAMETER(monitor);
return false;
}