(svn r5087) - NewGRF: Fix thinko in returning a calculated callback result

This commit is contained in:
peter1138 2006-06-03 19:17:34 +00:00
parent 4565989d54
commit ce90b70a41
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ static inline const SpriteGroup *ResolveVariable(const SpriteGroup *group, Resol
if (group->g.determ.num_ranges == 0) {
/* nvar == 0 is a special case -- we turn our value into a callback result */
nvarzero.type = SGT_CALLBACK;
nvarzero.g.callback.result = GB(value, 0, 15) | 0x8000;
nvarzero.g.callback.result = GB(value, 0, 15);
return &nvarzero;
}