Add OSD messages back to status bar.

OSD messages can be disabled, while still leaving them in the status bar. This is incredibly useful for certain users, who may wish to see the messages, but do not wish to have them cover up half of the screen. In particular TASers will generally have OSD messages on the screen 100% of the time, and they cover up useful information, making it critical to turn them off. However the messages are still very useful to them, so it's important to have them somewhere.

This reverts 4a16211bae.
This commit is contained in:
Rachel Bryk 2014-08-29 17:45:39 -04:00
parent af79d28cfa
commit ecdd0f6ac0
1 changed files with 1 additions and 0 deletions

View File

@ -123,6 +123,7 @@ void DisplayMessage(const std::string& message, int time_in_ms)
} }
g_video_backend->Video_AddMessage(message, time_in_ms); g_video_backend->Video_AddMessage(message, time_in_ms);
Host_UpdateTitle(message);
} }
bool IsRunning() bool IsRunning()