image loader fix

This commit is contained in:
Turánszki János
2022-05-16 09:27:58 +02:00
parent 54491ad536
commit d059efe96c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -532,7 +532,7 @@ namespace wi
width = desc.width;
}
else
rgb = stbi_load_from_memory(filedata, (int)filesize, &height, &width, &bpp, channelCount);
rgb = stbi_load_from_memory(filedata, (int)filesize, &width, &height, &bpp, channelCount);
if (rgb != nullptr)
{
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wi::version
// minor features, major updates, breaking compatibility changes
const int minor = 60;
// minor bug fixes, alterations, refactors, updates
const int revision = 65;
const int revision = 66;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);