diff options
| author | 2014-06-06 00:35:49 -0400 | |
|---|---|---|
| committer | 2014-06-13 09:51:13 -0400 | |
| commit | c95972275e276abe3afcac79d956ea29a0879c8e (patch) | |
| tree | f902b895aa25142f94001674baedfdac9794d548 /src/core/hle/kernel/kernel.cpp | |
| parent | Kernel: Updated various kernel function "name" arguments to be const references. (diff) | |
| download | yuzu-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/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 9d5991c37..e51a9d45a 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -128,7 +128,7 @@ Object* ObjectPool::CreateByIDType(int type) { | |||
| 128 | 128 | ||
| 129 | default: | 129 | default: |
| 130 | ERROR_LOG(COMMON, "Unable to load state: could not find object type %d.", type); | 130 | ERROR_LOG(COMMON, "Unable to load state: could not find object type %d.", type); |
| 131 | return NULL; | 131 | return nullptr; |
| 132 | } | 132 | } |
| 133 | } | 133 | } |
| 134 | 134 | ||