image loader fix
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user