(svn r10497) -Fix (FS#1013,r8464): Ship max speed wrongly shown (benc)

This commit is contained in:
peter1138 2007-07-10 07:10:23 +00:00
parent a5da0e6609
commit 0f2d37a113

View File

@ -55,7 +55,7 @@ static void ShipDetailsWndProc(Window *w, WindowEvent *e)
/* Draw max speed */
{
SetDParam(0, v->max_speed / 2);
SetDParam(0, v->max_speed * 10 / 32);
DrawString(2, 25, STR_9813_MAX_SPEED, 0);
}