diff options
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -481,6 +481,14 @@ int ui_text_visible() return visible; } +void ui_show_text(int visible) +{ + pthread_mutex_lock(&gUpdateMutex); + show_text = visible; + update_screen_locked(); + pthread_mutex_unlock(&gUpdateMutex); +} + int ui_wait_key() { pthread_mutex_lock(&key_queue_mutex); |