1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-01 16:24:12 +01:00

[dxgi] Fixed error message formatting in DxgiDevice

This commit is contained in:
Philip Rebohle 2018-05-22 23:52:12 +02:00
parent 56e7389495
commit 58fa815926
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -125,7 +125,7 @@ namespace dxvk {
IDXGIResource* const* ppResources,
DXGI_OFFER_RESOURCE_PRIORITY Priority) {
Logger::err("DxgiDevice::OfferResources: not implemented");
Logger::err("DxgiDevice::OfferResources: Not implemented");
return DXGI_ERROR_UNSUPPORTED;
}
@ -134,13 +134,13 @@ namespace dxvk {
UINT NumResources,
IDXGIResource* const* ppResources,
BOOL* pDiscarded) {
Logger::err("DxgiDevice::ReclaimResources: not implemented");
Logger::err("DxgiDevice::ReclaimResources: Not implemented");
return DXGI_ERROR_UNSUPPORTED;
}
HRESULT STDMETHODCALLTYPE DxgiDevice::EnqueueSetEvent(HANDLE hEvent) {
Logger::err("DxgiDevice::EnqueueSetEvent: not implemented");
Logger::err("DxgiDevice::EnqueueSetEvent: Not implemented");
return DXGI_ERROR_UNSUPPORTED;
}