rename coords to size in struct MonCoords

This commit is contained in:
Philipp AUER
2019-01-04 18:17:55 +01:00
committed by huderlem
parent cba2f81bf8
commit 55202eac24
16 changed files with 1012 additions and 1012 deletions

View File

@@ -5,7 +5,7 @@ struct MonCoords
{
// This would use a bitfield, but some function
// uses it as a u8 and casting won't match.
u8 coords; // u8 x:4, y:4;
u8 size; // u8 width:4, height:4;
u8 y_offset;
};