Add memory to state

This commit is contained in:
Fabien Freling 2019-07-14 19:11:40 +02:00
parent 690df0321f
commit 3b9085545b
6 changed files with 19 additions and 11 deletions

View file

@ -17,6 +17,6 @@ QImage OImageProvider::requestImage(const QString &id, QSize *size, const QSize
}
Q_ASSERT(oboy->loaded());
QImage img = oboy->backgroundMap();
QImage img = oboy->backgroundMap(0);
return img;
}