Merge pull request #164 from WaywardHeart/snapToBitmap-composite

Graphics::snapToBitmap needs to call p->screen.composite()
This commit is contained in:
Splendide Imaginarius 2024-04-29 20:55:21 +00:00 committed by GitHub
commit c12f00c537
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1436,6 +1436,8 @@ void Graphics::fadein(int duration) {
}
Bitmap *Graphics::snapToBitmap() {
p->screen.composite();
if (shState->config().enableHires) {
// TODO: Maybe don't reconstruct this struct every time?
TEXFBO tf;