summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/pstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/netlist/pstate.c')
-rw-r--r--src/emu/netlist/pstate.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/emu/netlist/pstate.c b/src/emu/netlist/pstate.c
index 25543afced5..770f2581b77 100644
--- a/src/emu/netlist/pstate.c
+++ b/src/emu/netlist/pstate.c
@@ -7,24 +7,24 @@
ATTR_COLD pstate_manager_t::~pstate_manager_t()
{
- m_save.reset_and_free();
+ m_save.reset_and_free();
}
ATTR_COLD void pstate_manager_t::save_state_ptr(const pstring &stname, const netlist_data_type_e dt, const int size, const int count, void *ptr)
{
- pstring fullname = stname;
- ATTR_UNUSED pstring ts[] = {
- "NOT_SUPPORTED",
- "DT_DOUBLE",
- "DT_INT64",
- "DT_INT8",
- "DT_INT",
- "DT_BOOLEAN"
- };
+ pstring fullname = stname;
+ ATTR_UNUSED pstring ts[] = {
+ "NOT_SUPPORTED",
+ "DT_DOUBLE",
+ "DT_INT64",
+ "DT_INT8",
+ "DT_INT",
+ "DT_BOOLEAN"
+ };
- NL_VERBOSE_OUT(("SAVE: <%s> %s(%d) %p\n", fullname.cstr(), ts[dt].cstr(), size, ptr));
- pstate_entry_t *p = new pstate_entry_t(stname, dt, size, count, ptr);
- m_save.add(p);
+ NL_VERBOSE_OUT(("SAVE: <%s> %s(%d) %p\n", fullname.cstr(), ts[dt].cstr(), size, ptr));
+ pstate_entry_t *p = new pstate_entry_t(stname, dt, size, count, ptr);
+ m_save.add(p);
}