Skip to content

Commit

Permalink
Fixes newline function to return correct character.
Browse files Browse the repository at this point in the history
  • Loading branch information
leggettc18 committed Jul 14, 2022
1 parent 8739951 commit cd096ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "randomizer_custom_messages.h"
#include "randomizer.h"
#include <variables.h>

using namespace std::literals::string_literals;
Expand Down Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

#include <string>
#include "../../../include/z64item.h"
#include "randomizer.h"

#define QM_WHITE 0x00
#define QM_RED 0x41
Expand Down

0 comments on commit cd096ce

Please sign in to comment.