early-access version 3035

This commit is contained in:
pineappleEA
2022-10-18 12:16:38 +02:00
parent 4fa6f67c0a
commit 9f50a9bdc6
5 changed files with 55 additions and 56 deletions

View File

@@ -37,6 +37,8 @@ public:
}
void* Allocate() {
// KScopedInterruptDisable di;
m_lock.lock();
Node* ret = m_head;
@@ -49,6 +51,8 @@ public:
}
void Free(void* obj) {
// KScopedInterruptDisable di;
m_lock.lock();
Node* node = static_cast<Node*>(obj);

View File

@@ -1,6 +1,8 @@
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "core/hle/result.h"
namespace Service::VI {