From 9213e46d2f3c842fb9c25c23d9a0a4b87b69d826 Mon Sep 17 00:00:00 2001 From: lzwdgc Date: Thu, 1 Jun 2017 21:31:25 +0300 Subject: [PATCH] Multiply scale by 100. --- src/mmp_extractor/mmp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mmp_extractor/mmp.cpp b/src/mmp_extractor/mmp.cpp index 58fc6c6..cf314cb 100644 --- a/src/mmp_extractor/mmp.cpp +++ b/src/mmp_extractor/mmp.cpp @@ -251,7 +251,7 @@ void mmp::writeFileInfo() ofile << "h_max: " << h_max << "\n"; ofile << "h_diff: " << h_max - h_min << "\n"; ofile << "scale16: " << scale16 << "\n"; - ofile << "scale: " << scale << "\n"; + ofile << "scale: " << scale * 100 << "\n"; } void mmp::writeTexturesList()