Browse Source

libobs-opengl: Fix compiler warning

Fix unused parameter warning.
mvji 3 years ago
parent
commit
c6029ac658
1 changed files with 3 additions and 0 deletions
  1. 3 0
      libobs-opengl/gl-cocoa.m

+ 3 - 0
libobs-opengl/gl-cocoa.m

@@ -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;
 }