Skip to content

Commit d371401

Browse files
Prints Raw Character as Well
1 parent 7ca8dd9 commit d371401

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

includes/StenoByte_Core.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ void setup_subvalues_array() {
6262
*/
6363
void get_byte_summary(char* msg) {
6464
sprintf(msg + strlen(msg), "Last Computed Byte as decimal: %d\n", current_byte); // Prints between 33 and 35 chars
65+
sprintf(msg + strlen(msg), R"(Last Computed Byte as Raw Value: %c)", (char) current_byte);
6566
}
6667

6768
/*

0 commit comments

Comments
 (0)