From 0d798515533d72ce168e4ffb988f3c57ef1aa442 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 18 Jul 2021 14:17:19 -0700 Subject: [PATCH] Polishing the vntextbox off. --- src/display/gui/font.c | 1 - src/vn/gui/vntextbox.c | 11 +++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/display/gui/font.c b/src/display/gui/font.c index 8146c5de..4e7a82cf 100644 --- a/src/display/gui/font.c +++ b/src/display/gui/font.c @@ -167,7 +167,6 @@ void fontTextClamp(font_t *font, fonttextinfo_t *info, char *text, int32_t fontGetLineCharCount(fonttextinfo_t *info,int32_t start,int32_t count) { int32_t charCount, i, m; - m = mathMin(start+count, info->lineCount); charCount = 0; diff --git a/src/vn/gui/vntextbox.c b/src/vn/gui/vntextbox.c index a9ba6791..a71bd1b5 100644 --- a/src/vn/gui/vntextbox.c +++ b/src/vn/gui/vntextbox.c @@ -44,14 +44,10 @@ void vnTextBoxRebuffer(vntextbox_t *box) { void vnTextBoxUpdate(vntextbox_t *box, engine_t *engine) { int32_t i; - if(vnTextBoxHasScrolled(box)) { - printf("."); + // "Next text box" + if(vnTextBoxHasScrolled(box) && box->linesMax > 0) { if(!inputIsPressed(&engine->input, INPUT_ACCEPT)) return; - - // "Next text box" - printf("Next"); - i = 1; - box->lineCurrent += i; + box->lineCurrent += box->linesMax; return; } @@ -66,7 +62,6 @@ void vnTextBoxRender(vntextbox_t *box, shader_t *shader) { if(box->text == NULL) return; // Determine where we're rendering the indices up to. - // charCount = box->animTimeline.current * VN_TEXTBOX_SCROLL_SPEED; charCount = box->textScroll; if(charCount == 0) return;