Browse Source

tests: fix missing parameter when calling obs_display_create

Stéphane Lepin 5 years ago
parent
commit
a212c44c6d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/win/test.cpp

+ 1 - 1
test/win/test.cpp

@@ -112,7 +112,7 @@ static DisplayContext CreateDisplay(HWND hwnd)
 	info.zsformat = GS_ZS_NONE;
 	info.window.hwnd = hwnd;
 
-	return obs_display_create(&info);
+	return obs_display_create(&info, 0);
 }
 
 static void AddTestItems(obs_scene_t *scene, obs_source_t *source)