Fixes newline function to return correct character.

This commit is contained in:
Christopher Leggett 2022-07-14 00:56:47 -04:00
parent 873995199b
commit cd096ce5e9
No known key found for this signature in database
GPG Key ID: 7093AE5FF7037D79
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#include "randomizer_custom_messages.h"
#include "randomizer.h"
#include <variables.h>
using namespace std::literals::string_literals;
@ -31,7 +32,7 @@ std::string ITEM_OBTAINED(uint8_t x) {
}
std::string NEWLINE() {
return "\x02"s;
return "\x01"s;
}
std::string COLOR(uint8_t x) {

View File

@ -2,7 +2,6 @@
#include <string>
#include "../../../include/z64item.h"
#include "randomizer.h"
#define QM_WHITE 0x00
#define QM_RED 0x41