Skip to content

Commit

Permalink
[d3d8] Adjust CopyRects logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterSnowfall committed Sep 7, 2023
1 parent e31f4ef commit 308d26f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/d3d8/d3d8_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,12 +776,12 @@ namespace dxvk {
}

unhandled:
Logger::debug(str::format("CopyRects: Hit unhandled case from src pool ", srcDesc.Pool, " to dst pool ", dstDesc.Pool));
Logger::warn(str::format("CopyRects: Hit unhandled case from src pool ", srcDesc.Pool, " to dst pool ", dstDesc.Pool));
return D3DERR_INVALIDCALL;

done:
if (FAILED(res)) {
Logger::debug(str::format("CopyRects: FAILED to copy from src pool ", srcDesc.Pool, " to dst pool ", dstDesc.Pool));
Logger::err(str::format("CopyRects: FAILED to copy from src pool ", srcDesc.Pool, " to dst pool ", dstDesc.Pool));
return res;
}

Expand Down

0 comments on commit 308d26f

Please sign in to comment.