Cleanup: Use C++ style struct definition

This commit is contained in:
Sergey Sharybin
2023-07-17 12:43:46 +02:00
committed by Sergey Sharybin
parent bd7c137ac9
commit 29d9d00a14

View File

@@ -30,9 +30,9 @@ struct ReportList;
extern "C" {
#endif
typedef struct HighlightedTile {
struct HighlightedTile {
rcti rect;
} HighlightedTile;
};
/* controls state of render, everything that's read-only during render stage */
struct Render {