From 2c3069f59031b68a58b04411c9dd705d7adbf66d Mon Sep 17 00:00:00 2001 From: Jarek Syrylak Date: Sat, 28 Jul 2018 13:18:34 +0100 Subject: [PATCH] Temporary hack to let app finish even if it is calling unimplemented transaction --- src/core/hle/service/vi/vi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index 993f1e65a2..a1157ce6a7 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -551,7 +551,7 @@ private: } else if (transaction == TransactionId::CancelBuffer) { LOG_CRITICAL(Service_VI, "(STUBBED) called, transaction=CancelBuffer"); } else { - ASSERT_MSG(false, "Unimplemented"); + UNIMPLEMENTED(); } IPC::ResponseBuilder rb{ctx, 2};