diff options
author | 2016-02-21 03:03:05 +0100 | |
---|---|---|
committer | 2016-02-21 03:03:29 +0100 | |
commit | bf033cfe00d4fbc49031468d32436b3f47886062 (patch) | |
tree | 4f699732cfe376028a647b7e27617a048bda95e2 /src/emu/ui/ui.cpp | |
parent | eca47070a5894d7e95bde0ad877eddada2733393 (diff) |
Final fixups, get sliders working again, nw
Diffstat (limited to 'src/emu/ui/ui.cpp')
-rw-r--r-- | src/emu/ui/ui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp index b002560382c..b7babbc641e 100644 --- a/src/emu/ui/ui.cpp +++ b/src/emu/ui/ui.cpp @@ -1954,6 +1954,8 @@ static slider_state *slider_alloc(running_machine &machine, const char *title, I state->incval = incval; state->update = update; state->arg = arg; + state->hidden = false; + state->id = -1; strcpy(state->description, title); return state; |