[nostalgia] Remove usages of ::size_t
This commit is contained in:
parent
26032a9d88
commit
7fe47a237d
@ -36,7 +36,7 @@ void Zone::draw(Context *ctx) {
|
||||
}
|
||||
}
|
||||
|
||||
size_t Zone::size() {
|
||||
std::size_t Zone::size() {
|
||||
return sizeof(Zone) + m_bounds.width * m_bounds.height * sizeof(Tile);
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ struct Zone {
|
||||
|
||||
void draw(core::Context *ctx);
|
||||
|
||||
size_t size();
|
||||
std::size_t size();
|
||||
|
||||
Tile *tile(int x, int y);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user