From 724159c8b4159bfb430fe5559d00766b993cb4eb Mon Sep 17 00:00:00 2001 From: raven02 Date: Tue, 9 Jun 2015 00:51:41 +0800 Subject: [PATCH] d3d12: warning log fix --- rpcs3/Emu/RSX/D3D12/D3D12.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/D3D12/D3D12.h b/rpcs3/Emu/RSX/D3D12/D3D12.h index 4538ca4b35..25be93edc4 100644 --- a/rpcs3/Emu/RSX/D3D12/D3D12.h +++ b/rpcs3/Emu/RSX/D3D12/D3D12.h @@ -222,7 +222,7 @@ inline D3D12_COMPARISON_FUNC getCompareFunc(u32 op) case CELL_GCM_GEQUAL: return D3D12_COMPARISON_FUNC_GREATER_EQUAL; case CELL_GCM_ALWAYS: return D3D12_COMPARISON_FUNC_ALWAYS; default: - LOG_WARNING(RSX, "Unsupported Compare Op %d", op); + LOG_WARNING(RSX, "Unsupported Compare Function %d", op); return D3D12_COMPARISON_FUNC(); } } @@ -295,4 +295,4 @@ inline DXGI_FORMAT getTextureDXGIFormat(int format) } } -#endif \ No newline at end of file +#endif