summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2010-06-23 19:35:49 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2010-06-23 19:35:49 +0000
commitea8dd946778db135f22b5a3f11278d6f0a137ce8 (patch)
tree24ae38a3974543bd478af606404eed8b8e524cfc /src/emu/ui.c
parentc660837bb3d294d7cc748df8b576930de1379c0e (diff)
- Moved ioproc implementation from MESS [Miodrag Milanovic]
- Implemented more image device calls, and did some cleanup (no whatsnew)
Diffstat (limited to 'src/emu/ui.c')
-rw-r--r--src/emu/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c
index 043b75f1083..d2ba655a1fb 100644
--- a/src/emu/ui.c
+++ b/src/emu/ui.c
@@ -1274,7 +1274,7 @@ void ui_image_handler_ingame(running_machine *machine)
{
for (bool gotone = machine->devicelist.first(image); gotone; gotone = image->next(image))
{
- image->display();
+ image->call_display();
}
}