Info: rename mipmap "info" key to "bounds"

This commit is contained in:
Matthias Schiffer 2021-02-12 23:43:20 +01:00
parent d2802b73f5
commit cbc4a946c6
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
2 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ void Info::writeJSON(const char *filename) const {
std::tie(minX, maxX, minZ, maxZ) = getBounds(level);
std::fprintf(f, "{");
std::fprintf(f, "\"info\":{");
std::fprintf(f, "\"bounds\":{");
std::fprintf(f, "\"minX\":%i,", minX);
std::fprintf(f, "\"maxX\":%i,", maxX);
std::fprintf(f, "\"minZ\":%i,", minZ);