Skip to content

Commit 5415753

Browse files
Fixed compiler warning
1 parent 67e71a9 commit 5415753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CachedTile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct CachedTile
1111
bool valid;
1212
uint16_t *buffer;
1313

14-
CachedTile() : buffer(nullptr), valid(false) {}
14+
CachedTile() : valid(false), buffer(nullptr) {}
1515

1616
bool allocate()
1717
{

0 commit comments

Comments
 (0)