From 502f45111049bf24d037e04791d400e9acaed18c Mon Sep 17 00:00:00 2001 From: Derek Stevens Date: Wed, 9 Jan 2019 21:31:21 -0800 Subject: [PATCH] missed a frameAdvance() in displayTextBox() --- TextBox.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/TextBox.c b/TextBox.c index eb8ebd4..a6128c9 100644 --- a/TextBox.c +++ b/TextBox.c @@ -160,9 +160,7 @@ void displayTextBox(TextBox* self) textBoxInput(self, &textIsRelevent); - SDL_Flip(screen); - timeDilation(); - + frameAdvance(); } self->scroll = 0; self->cursor = 0;