Fix #539 (oops, thanks igor725)

This commit is contained in:
UnknownShadow200 2018-09-09 22:54:24 +10:00
parent ce2924cf4c
commit 95252e67ca
2 changed files with 2 additions and 2 deletions

View File

@ -1137,7 +1137,7 @@ static void ChatScreen_Render(void* screen, Real64 delta) {
}
}
if (s->Announcement.Texture.ID && Chat_Announcement.Received + (5 * 1000) >= now) {
if (s->Announcement.Texture.ID && now > Chat_Announcement.Received + (5 * 1000)) {
Elem_TryFree(&s->Announcement);
}
}