mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-07-03 14:38:13 +00:00
You should call present when using a software renderer as well.
Fixes https://github.com/libsdl-org/SDL/issues/8676 (cherry picked from commit 581d1cab257a14cd235df2192f012abb0d4e36e0)
This commit is contained in:
parent
79a8e8cf04
commit
7d94121606
|
@ -50,6 +50,7 @@ void DrawChessBoard()
|
||||||
SDL_RenderFillRect(renderer, &rect);
|
SDL_RenderFillRect(renderer, &rect);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
SDL_RenderPresent(renderer);
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
|
|
Loading…
Reference in a new issue