Minimum width for trophy alert.

This commit is contained in:
Steve 2016-05-19 08:53:14 +01:00
parent e7cfa09f8a
commit 6f0e8ee397
1 changed files with 1 additions and 0 deletions

View File

@ -285,6 +285,7 @@ static void nextAlert(void)
textSize(alertTrophy->description, 20, &w, &h);
alertRect.w = MAX(alertRect.w, w);
alertRect.w = MAX(400, alertRect.w);
alertRect.w += 125;
alertRect.x = -alertRect.w;
}