mirror of
https://git.shylie.info/shylie/glerminal.git
synced 2025-10-01 20:50:10 +00:00
print stbi failure reason
This commit is contained in:
@@ -825,16 +825,16 @@ int glerminal_load_sprites_file(const char* filename)
|
||||
stbi_uc* const buffer = stbi_load(filename, &w, &h, nullptr, 4);
|
||||
|
||||
// verify atlas size is a multiple of CELL_SIZE in each dimension
|
||||
if (buffer && w % glerminal::CELL_SIZE == 0 && h % glerminal::CELL_SIZE == 0)
|
||||
if (!buffer)
|
||||
{
|
||||
std::cout << stbi_failure_reason() << std::endl;
|
||||
}
|
||||
else if (w % glerminal::CELL_SIZE == 0 && h % glerminal::CELL_SIZE == 0)
|
||||
{
|
||||
GLERMINAL_G->load_atlas(w / glerminal::CELL_SIZE, h / glerminal::CELL_SIZE, reinterpret_cast<unsigned int*>(buffer));
|
||||
|
||||
success = true;
|
||||
}
|
||||
else if (buffer)
|
||||
{
|
||||
std::cout << "Invalid image width/height" << std::endl;
|
||||
}
|
||||
|
||||
stbi_image_free(buffer);
|
||||
|
||||
|
Reference in New Issue
Block a user