Skip to content

Commit

Permalink
Allow null bytes in note compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
zzril committed Nov 16, 2024
1 parent fde0b2e commit 304e889
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/note_compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,11 @@ int NoteCompiler_get_next_note(void* compiler, Note* note, bool* finished) {

switch(comp->symbol) {

case ' ':
case '\0':
case '\t':
case '\n':
case '\r':
case '\t':
case ' ':
continue;

case 'A':
Expand Down

0 comments on commit 304e889

Please sign in to comment.