summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-06-06 00:35:49 -0400
committerGravatar bunnei2014-06-13 09:51:13 -0400
commitc95972275e276abe3afcac79d956ea29a0879c8e (patch)
treef902b895aa25142f94001674baedfdac9794d548 /src/core/core.cpp
parentKernel: Updated various kernel function "name" arguments to be const references. (diff)
downloadyuzu-c95972275e276abe3afcac79d956ea29a0879c8e.tar.gz
yuzu-c95972275e276abe3afcac79d956ea29a0879c8e.tar.xz
yuzu-c95972275e276abe3afcac79d956ea29a0879c8e.zip
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
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() {