summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emualloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emualloc.h')
-rw-r--r--src/emu/emualloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/emualloc.h b/src/emu/emualloc.h
index 3a47180b517..192f1fca85e 100644
--- a/src/emu/emualloc.h
+++ b/src/emu/emualloc.h
@@ -60,9 +60,9 @@ private:
public:
resource_pool_item(void *ptr, size_t size)
- : m_next(NULL),
- m_ordered_next(NULL),
- m_ordered_prev(NULL),
+ : m_next(nullptr),
+ m_ordered_next(nullptr),
+ m_ordered_prev(nullptr),
m_ptr(ptr),
m_size(size),
m_id(~(UINT64)0) { }
d class='commitgraph'>* Cleanups and version bump. Aaron Giles2010-01-161-1/+1 * Bulk driver.h -> emu.h switch. Aaron Giles2010-01-101-1/+1 * Added driver data struct + save states to darius.c & othunder.c Fabio Priuli2010-01-091-73/+99 * Converted taitosnd (aka tc0140syt) to be a device and updated the related dri... Fabio Priuli2010-01-061-6/+16 * Rename taiicdev.* -> taitoic.* Aaron Giles2009-12-301-1/+1 * Taito wip: Fabio Priuli2009-12-281-4/+22 * Results of running the latest srcclean. Aaron Giles2009-12-281-1/+1 * Whitespace cleanup. (No, a release is not yet imminent.) Aaron Giles2009-12-281-1/+1 * Rename eepromdev.c/h back to eeprom.c/h Aaron Giles2009-12-271-1/+1 * Rename functions and other references to eepromdev_* back to eeprom_* Aaron Giles2009-12-271-4/+4 * Misc Taito stuff: Fabio Priuli2009-12-271-17/+18 * Updated playmark, othunder, psikyo4, pntnpuzl, and pirates to eepromdev. Aaron Giles2009-12-271-27/+23 * Removed the global "includes" include and instead specify the "includes" path... Phil Bennett2009-12-211-1/+1 * More memory system cleanup. Removed SMH_* macros entirely. In Aaron Giles2009-12-051-1/+1 * Memory banks are now referenced by tag rather than index.