(svn r1705) Sign owner variable is a byte, not int32 of course

This commit is contained in:
dominik 2005-01-28 12:21:04 +00:00
parent 5856325e5a
commit 4e6d6578e4
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ static const byte _sign_desc[] = {
SLE_CONDVAR(SignStruct,y, SLE_FILE_I16 | SLE_VAR_I32, 0, 4),
SLE_CONDVAR(SignStruct,x, SLE_INT32, 5, 255),
SLE_CONDVAR(SignStruct,y, SLE_INT32, 5, 255),
SLE_CONDVAR(SignStruct,owner, SLE_INT32, 6, 255),
SLE_CONDVAR(SignStruct,owner, SLE_UINT8, 6, 255),
SLE_VAR(SignStruct,z, SLE_UINT8),
SLE_END()
};