1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00

kern: fix missing peak set in KResourceLimit::SetLimitValue

This commit is contained in:
Michael Scire 2021-06-17 12:57:56 -07:00
parent e423aef033
commit 25305257d6

View file

@ -108,6 +108,7 @@ namespace ams::kern {
R_UNLESS(m_current_values[which] <= value, svc::ResultInvalidState());
m_limit_values[which] = value;
m_peak_values[which] = m_current_values[which];
return ResultSuccess();
}