mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 10:37:17 -07:00
Fixes newline function to return correct character.
This commit is contained in:
parent
873995199b
commit
cd096ce5e9
2 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
#include <string>
|
||||
#include "../../../include/z64item.h"
|
||||
#include "randomizer.h"
|
||||
|
||||
#define QM_WHITE 0x00
|
||||
#define QM_RED 0x41
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue