Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
efosamark committed Sep 5, 2024
1 parent 6640369 commit 5c7dd29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/text_funcs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ std::pair<std::string, int> readTextFromFile(const std::string& filePath)
std::ifstream file(filePath);
std::vector<std::string> words;
int lineCount = 0;
size_t maxRowLength = 34;
size_t maxRowLength = 35;

std::string line;
while (std::getline(file, line)) {
Expand Down
2 changes: 1 addition & 1 deletion source/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ std::pair<std::string, int> dispCustData(const std::string& jsonPath, const std:
}
}
}
if (ref != "") {
if (ref == "") {
int intValue = reversedHexToInt(currentHex);
if (j_increment) { // Add increment value from the JSON to the displayed value
intValue += std::stoi(json_string_value(j_increment));
Expand Down

0 comments on commit 5c7dd29

Please sign in to comment.