summaryrefslogtreecommitdiffstats
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-15 07:55:51 +0200
committerbunnei <bunneidev@gmail.com>2022-10-19 04:13:35 +0200
commit829e82e264504696ce1d0ae9421a53d16bf104ea (patch)
treece5c5f35eec6c801c51d7ff6242cbd42ad2d84f8 /src/core/hle/result.h
parentcore: Partially persist emulation state across game boots. (diff)
downloadyuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar.gz
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar.bz2
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar.lz
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar.xz
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.tar.zst
yuzu-829e82e264504696ce1d0ae9421a53d16bf104ea.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/result.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index d714dea38..ef4b2d417 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -470,9 +470,6 @@ constexpr inline Result __TmpCurrentResultReference = ResultSuccess;
#define R_UNLESS(expr, res) \
{ \
if (!(expr)) { \
- if (res.IsError()) { \
- LOG_ERROR(Kernel, "Failed with result: {}", res.raw); \
- } \
R_THROW(res); \
} \
}