Revert "[common/core/dynarmic] Optimize page table allocations (#4219)"

This reverts commit 5f142c7926.
This commit is contained in:
lizzie
2026-09-12 20:35:16 +00:00
parent 5d150cac5c
commit f75828da0c
27 changed files with 392 additions and 729 deletions
+2 -1
View File
@@ -10,6 +10,7 @@
#include <optional>
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "common/virtual_buffer.h"
namespace Common {
@@ -85,7 +86,7 @@ private:
u8* virtual_base{};
size_t virtual_base_offset{};
// Windows requires it for kernels whom lack proper support for some functions!
bool fallback_buffer{false};
std::optional<Common::VirtualBuffer<u8>> fallback_buffer;
};
} // namespace Common