1
0
Fork 0

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

release/1.0
frosch 2009-10-20 19:30:50 +00:00
parent 7658bac2b5
commit a138f604ee
1 changed files with 1 additions and 1 deletions

View File

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