summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 26d52f7be..d366498a5 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -18,10 +18,10 @@
18 18
19namespace Core { 19namespace Core {
20 20
21u64 g_last_ticks = 0; ///< Last CPU ticks 21u64 g_last_ticks = 0; ///< Last CPU ticks
22ARM_Disasm* g_disasm = NULL; ///< ARM disassembler 22ARM_Disasm* g_disasm = nullptr; ///< ARM disassembler
23ARM_Interface* g_app_core = NULL; ///< ARM11 application core 23ARM_Interface* g_app_core = nullptr; ///< ARM11 application core
24ARM_Interface* g_sys_core = NULL; ///< ARM11 system (OS) core 24ARM_Interface* g_sys_core = nullptr; ///< ARM11 system (OS) core
25 25
26/// Run the core CPU loop 26/// Run the core CPU loop
27void RunLoop() { 27void RunLoop() {