summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-05 20:47:43 +0200
committerbunnei <bunneidev@gmail.com>2020-04-17 06:59:30 +0200
commitfc040b5b70dc4ca3d4217a65afc438a18c6930bd (patch)
tree2ac30e64ac20952eca2ac5d733c700300e759074 /src/core
parentkernel: memory: Add MemoryBlock class, for managing memory blocks and their state. (diff)
downloadyuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.gz
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.bz2
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.lz
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.xz
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.zst
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/physical_memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/physical_memory.h b/src/core/hle/kernel/physical_memory.h
index b689e8e8b..7a0266780 100644
--- a/src/core/hle/kernel/physical_memory.h
+++ b/src/core/hle/kernel/physical_memory.h
@@ -4,6 +4,8 @@
#pragma once
+#include <vector>
+
#include "common/alignment.h"
namespace Kernel {