svc: Implement SetResourceLimitLimitValues

* Also correct existing name and add missing error codes
This commit is contained in:
GPUCode
2023-11-30 13:02:15 +02:00
parent a8d869c347
commit 8f054c47f6
12 changed files with 77 additions and 22 deletions

View File

@ -30,7 +30,6 @@ Timer::~Timer() {
std::shared_ptr<Timer> KernelSystem::CreateTimer(ResetType reset_type, std::string name) {
auto timer = std::make_shared<Timer>(*this);
timer->resource_limit = resource_limit;
timer->reset_type = reset_type;
timer->signaled = false;
timer->name = std::move(name);