(svn r17824) -Fix (r4594): _date_fract runs from 0 to 73 since r2041. Variable 0x09 should not.

pull/155/head
frosch 15 years ago
parent 9669ae4869
commit 7395177eb2

@ -3716,7 +3716,7 @@ bool GetGlobalVariable(byte param, uint32 *value)
return true;
case 0x09: // date fraction
*value = _date_fract;
*value = _date_fract * 885;
return true;
case 0x0A: // animation counter

Loading…
Cancel
Save