summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-12-30 00:03:08 +0100
committerLioncash <mathew1800@gmail.com>2015-12-30 00:03:08 +0100
commitcee8df6ff018ea6a851f012fa1c0eea758c758b0 (patch)
tree8fa1c00d82331054c4c6d4d0a331faec196efff9 /src/core/core.h
parentMerge pull request #1300 from Subv/arbitrateaddress (diff)
downloadyuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar.gz
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar.bz2
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar.lz
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar.xz
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.tar.zst
yuzu-cee8df6ff018ea6a851f012fa1c0eea758c758b0.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 491230a74..453e0a5f0 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -4,6 +4,7 @@
#pragma once
+#include <memory>
#include "common/common_types.h"
class ARM_Interface;
@@ -23,8 +24,8 @@ struct ThreadContext {
u32 fpexc;
};
-extern ARM_Interface* g_app_core; ///< ARM11 application core
-extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
+extern std::unique_ptr<ARM_Interface> g_app_core; ///< ARM11 application core
+extern std::unique_ptr<ARM_Interface> g_sys_core; ///< ARM11 system (OS) core
////////////////////////////////////////////////////////////////////////////////////////////////////