This commit is contained in:
MihailRis 2025-01-21 04:17:29 +03:00
parent e247902cc6
commit 266f3059b4

View File

@ -202,7 +202,7 @@ void GUI::act(float delta, const Viewport& vp) {
void GUI::postAct() {
while (!postRunnables.empty()) {
runnable callback = postRunnables.back();
runnable callback = postRunnables.front();
postRunnables.pop();
callback();
}