Skip to content

Commit

Permalink
fix is_binary in smssynth
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzziqersoftware committed Jan 4, 2022
1 parent 5ae3419 commit 1516b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sms/smssynth.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ uint64_t debug_flags = DebugFlag::Default;

bool is_binary(const char* s, size_t size) {
for (size_t x = 0; x < size; x++) {
if ((s[x] < 0x20) || (s[x] > 0x7F)) {
if ((s[x] < 0x20) || (s[x] > 0x7E)) {
return true;
}
}
Expand Down

0 comments on commit 1516b4c

Please sign in to comment.