1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Fixed theme image merging issue with missing elements

This commit is contained in:
Brian Fiete 2022-03-03 06:46:06 -08:00
parent 85acdda2b4
commit 20a932f5a7
3 changed files with 8 additions and 2 deletions

View file

@ -248,6 +248,9 @@ int main()
auto _HasUniqueThemeImage = [&](int col, int row, int size)
{
if (!_HasImage(col, row, 1, size))
return false;
int scale = 1 << size;
auto srcImage0 = imageDatas[0][size];
if (srcImage0 == NULL)