Remove deprecated BitmapManager and experiment flag

This commit is contained in:
scawful
2024-08-13 22:02:05 -04:00
parent 3b7542e3a7
commit 54e8d7c3a5
10 changed files with 23 additions and 87 deletions

View File

@@ -305,9 +305,7 @@ void MessageEditor::ReadAllTextData() {
current_message_parsed.clear();
continue;
}
if (current_byte == 0xFF) {
} else if (current_byte == 0xFF) {
break;
}
@@ -381,7 +379,7 @@ void MessageEditor::ReadAllTextData() {
TextElement MessageEditor::FindMatchingCommand(uint8_t b) {
TextElement empty_element;
for (const auto text_element : TextCommands) {
for (const auto& text_element : TextCommands) {
if (text_element.ID == b) {
return text_element;
}