(svn r14221) -Fix: signs (town name, station name, ...) could be too long for 8bit width in pixels

This commit is contained in:
smatz
2008-09-02 14:46:28 +00:00
parent f5c8513f75
commit 2c58a87f4c
2 changed files with 2 additions and 2 deletions

View File

@@ -1259,7 +1259,7 @@ static void ViewportAddWaypoints(DrawPixelInfo *dpi)
void UpdateViewportSignPos(ViewportSign *sign, int left, int top, StringID str)
{
char buffer[128];
char buffer[256];
uint w;
sign->top = top;