(svn r27916) -Codechange: Enable usage of static_assert for MSVC

This commit is contained in:
frosch
2017-09-24 13:35:27 +00:00
parent bd68ed916d
commit 7bb2dedbd5
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ struct ParentSpriteToDraw {
int32 left; ///< minimal screen X coordinate of sprite (= x + sprite->x_offs), reference point for child sprites
int32 top; ///< minimal screen Y coordinate of sprite (= y + sprite->y_offs), reference point for child sprites
int first_child; ///< the first child to draw.
int32 first_child; ///< the first child to draw.
bool comparison_done; ///< Used during sprite sorting: true if sprite has been compared with all other sprites
};