diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-04-19 16:55:19 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-05-20 14:28:53 -0300 |
commit | 674ec686936fcde6977616dce2a68b42533ab2d7 (patch) | |
tree | 58b8982ff55bd7c0a530a6af58ee9371f4cf9a07 /vl.c | |
parent | f8c75b2486d62bf1cbe824aa4c471118061bdcd3 (diff) | |
download | qemu-674ec686936fcde6977616dce2a68b42533ab2d7.zip |
curses: curses_display_init() stub
One less #ifdef in vl.c.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -4540,11 +4540,9 @@ int main(int argc, char **argv, char **envp) case DT_NOGRAPHIC: (void)ds; /* avoid warning if no display is configured */ break; -#if defined(CONFIG_CURSES) case DT_CURSES: curses_display_init(ds, full_screen); break; -#endif #if defined(CONFIG_SDL) case DT_SDL: sdl_display_init(ds, full_screen, no_frame); |