diff options
Diffstat (limited to 'engines/mohawk/cursors.cpp')
-rw-r--r-- | engines/mohawk/cursors.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/mohawk/cursors.cpp b/engines/mohawk/cursors.cpp index cef24e14e5..84b1c73e04 100644 --- a/engines/mohawk/cursors.cpp +++ b/engines/mohawk/cursors.cpp @@ -151,7 +151,7 @@ NECursorManager::NECursorManager(const Common::String &appName) { if (!_exe->loadFromEXE(appName)) { // Not all have cursors anyway, so this is not a problem delete _exe; - _exe = 0; + _exe = nullptr; } } @@ -183,10 +183,10 @@ MacCursorManager::MacCursorManager(const Common::String &appName) { if (!_resFork->open(appName)) { // Not all have cursors anyway, so this is not a problem delete _resFork; - _resFork = 0; + _resFork = nullptr; } } else { - _resFork = 0; + _resFork = nullptr; } } @@ -219,7 +219,7 @@ LivingBooksCursorManager_v2::LivingBooksCursorManager_v2() { if (!_sysArchive->openFile("system.mhk")) { delete _sysArchive; - _sysArchive = 0; + _sysArchive = nullptr; } } |