Skip to content

Commit

Permalink
fix ReadHex2
Browse files Browse the repository at this point in the history
  • Loading branch information
profezzorn committed Oct 14, 2024
1 parent be7725b commit 805faab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/file_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class FileReader {
}
int ReadHex2() {
int a = ReadHex1();
int b = ReadHex2();
int b = ReadHex1();
if (a == -1 || b == -1) return -1;
return (a << 4) | b;
}
Expand Down

0 comments on commit 805faab

Please sign in to comment.