From 5f2d713fe47f10275828db5ac27ce90b69bc5c1b Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 7 Jun 2022 23:40:32 -0700 Subject: [PATCH] kern: mea culpa (some time since 7.x) --- libraries/libmesosphere/source/kern_k_address_arbiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libmesosphere/source/kern_k_address_arbiter.cpp b/libraries/libmesosphere/source/kern_k_address_arbiter.cpp index 00290c81a..335c12bca 100644 --- a/libraries/libmesosphere/source/kern_k_address_arbiter.cpp +++ b/libraries/libmesosphere/source/kern_k_address_arbiter.cpp @@ -123,7 +123,7 @@ namespace ams::kern { s32 new_value; if (count <= 0) { if ((it != m_tree.end()) && (it->GetAddressArbiterKey() == addr)) { - new_value = value - 2; + new_value = value - 1; } else { new_value = value + 1; }