Working on textbox code.

This commit is contained in:
2022-01-27 17:51:19 -08:00
parent d78c936afb
commit 593dc25d47
3 changed files with 90 additions and 61 deletions

View File

@@ -166,10 +166,10 @@ void main() {
// Alright begin the game logic here.
// conversationQueueNext();
char DEBUG_TEXT[] = "HEY";
uint8_t DEBUG_TEXT_LENGTH = 3;
for(j = 0; j < DEBUG_TEXT_LENGTH; j++) DEBUG_TEXT[j] = DEBUG_TEXT[j] - 33 + 4;
conversationTextboxSetText(DEBUG_TEXT, DEBUG_TEXT_LENGTH);
char DEBUG_TEXT[] = "Hello World\nThe quick brown fox jumps over the lazy dog. How now brown cow? The fitness gram pacer test is a";
// uint8_t DEBUG_TEXT_LENGTH = strlen(DEBUG_TEXT);
// for(j = 0; j < DEBUG_TEXT_LENGTH; j++) DEBUG_TEXT[j] = DEBUG_TEXT[j] - 33 + 4;
conversationTextboxSetText(DEBUG_TEXT);
// Begin the loop
while(1) {