diff --git a/games-emulation/yuzu/files/yuzu-9999-assert.patch b/games-emulation/yuzu/files/yuzu-9999-assert.patch
deleted file mode 100644
index cd342ffba1..0000000000
--- a/games-emulation/yuzu/files/yuzu-9999-assert.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- a/src/common/assert.h
-+++ b/src/common/assert.h
-@@ -28,22 +28,19 @@ __declspec(noinline, noreturn)
- }
-
- #define ASSERT(_a_) \
-- do \
-- if (!(_a_)) { \
-- assert_noinline_call([] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
-- } \
-- while (0)
-+ if (!(_a_)) { \
-+ LOG_CRITICAL(Debug, "Assertion Failed!"); \
-+ }
-
- #define ASSERT_MSG(_a_, ...) \
-- do \
-- if (!(_a_)) { \
-- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
-- } \
-- while (0)
-+ if (!(_a_)) { \
-+ LOG_CRITICAL(Debug, "Assertion Failed! " __VA_ARGS__); \
-+ }
-
--#define UNREACHABLE() assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); })
-+#define UNREACHABLE() \
-+ { LOG_CRITICAL(Debug, "Unreachable code!"); }
- #define UNREACHABLE_MSG(...) \
-- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); })
-+ { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); }
-
- #ifdef _DEBUG
- #define DEBUG_ASSERT(_a_) ASSERT(_a_)
diff --git a/games-emulation/yuzu/metadata.xml b/games-emulation/yuzu/metadata.xml
index b1edc6d5d2..d012102f57 100644
--- a/games-emulation/yuzu/metadata.xml
+++ b/games-emulation/yuzu/metadata.xml
@@ -6,7 +6,6 @@
samuel.bauer@yahoo.fr