diff options
author | Paul Gilbert | 2019-05-11 16:15:07 +1000 |
---|---|---|
committer | Paul Gilbert | 2019-05-11 16:15:07 +1000 |
commit | 96ebd81e5f29e9cde3d83c4af0b9166cd1f40b26 (patch) | |
tree | e98af72cbb3ca116434f5edd2d2ccd0c745e1161 /engines/glk/frotz | |
parent | 34122d2f47b4a80a26ea4361a35cba50b5ab5cc0 (diff) | |
download | scummvm-rg350-96ebd81e5f29e9cde3d83c4af0b9166cd1f40b26.tar.gz scummvm-rg350-96ebd81e5f29e9cde3d83c4af0b9166cd1f40b26.tar.bz2 scummvm-rg350-96ebd81e5f29e9cde3d83c4af0b9166cd1f40b26.zip |
GLK: HUGO: NULL to nullptr, Amiga compilation fix
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r-- | engines/glk/frotz/mem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/frotz/mem.cpp b/engines/glk/frotz/mem.cpp index 32e3ab3159..57dc5b5d15 100644 --- a/engines/glk/frotz/mem.cpp +++ b/engines/glk/frotz/mem.cpp @@ -224,9 +224,9 @@ void Mem::free_undo(int count) { undo_count--; } if (first_undo) - first_undo->prev = NULL; + first_undo->prev = nullptr; else - last_undo = NULL; + last_undo = nullptr; } void Mem::reset_memory() { |