Browse Source

libobs-d3d11: Fix incorrect format specifier

jp9000 11 years ago
parent
commit
e7cca4edd1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libobs-d3d11/d3d11-subsystem.cpp

+ 1 - 1
libobs-d3d11/d3d11-subsystem.cpp

@@ -219,7 +219,7 @@ void gs_device::InitDevice(const gs_init_data *data, IDXGIAdapter *adapter)
 		                         "swap chain", hr);
 
 	blog(LOG_INFO, "D3D11 loaded sucessfully, feature level used: %u",
-			(uint32_t)levelUsed);
+			(unsigned int)levelUsed);
 
 	defaultSwap.device     = this;
 	defaultSwap.hwnd       = (HWND)data->window.hwnd;