diff options
| author | 2016-01-27 08:12:00 +0100 | |
|---|---|---|
| committer | 2016-01-27 08:12:00 +0100 | |
| commit | b1d6f6d63f8294a3f62d7db6f9eea07da1d93664 (patch) | |
| tree | 10258b6f255e00e7eec2ec30112d6de07015c475 /src/emu/output.cpp | |
| parent | 9425c141de76ef9ee178af80731110e228fa89bb (diff) | |
Cleanups and version bumpmame0170
Diffstat (limited to 'src/emu/output.cpp')
| -rw-r--r-- | src/emu/output.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/output.cpp b/src/emu/output.cpp index a1ca5518ef9..25d37dd4c43 100644 --- a/src/emu/output.cpp +++ b/src/emu/output.cpp @@ -20,7 +20,7 @@ output_manager::output_manager(running_machine &machine) : m_machine(machine), - m_uniqueid(12345) + m_uniqueid(12345) { /* add pause callback */ machine.add_notifier(MACHINE_NOTIFY_PAUSE, machine_notify_delegate(FUNC(output_manager::pause), this)); @@ -49,7 +49,7 @@ output_manager::output_item* output_manager::find_item(const char *string) output_manager::output_item *output_manager::create_new_item(const char *outname, INT32 value) { output_item item; - + /* fill in the data */ item.name = outname; item.id = m_uniqueid++; @@ -197,7 +197,7 @@ void output_manager::set_notifier(const char *outname, output_notifier_func call /* if no item of that name, create a new one */ if (item == nullptr) item = create_new_item(outname, 0); - + item->notifylist.push_back(notify); } else |
