Skip to content

Commit

Permalink
Updated copyright in midi output files
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Cripps committed Nov 12, 2023
1 parent b1bc4fd commit add2f1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions midi_snd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ midi_snd::midi_snd(const unsigned int instrument, const unsigned int volume,
buffer = new i_buf();
midi_head();
count = 0;
snprintf(s, sizeof(s), "tab %s copyright 1995-2020 by Wayne Cripps", VERSION);
snprintf(s, sizeof(s), "tab %s copyright 1995-2024 by Wayne Cripps", VERSION);
text(Copyright, s);
text(Text, "converted by TAB");
text(Text, infile);
Expand All @@ -60,7 +60,7 @@ midi_snd::midi_snd(const unsigned int instrument,
buffer = new i_buf();
midi_head();
count = 0;
snprintf(s, sizeof(s), "tab %s copyright 1995-2020 by Wayne Cripps", VERSION);
snprintf(s, sizeof(s), "tab %s copyright 1995-2024 by Wayne Cripps", VERSION);
text(Copyright, s);
text(Text, "converted by TAB");
text(Text, infile);
Expand Down
2 changes: 1 addition & 1 deletion nmidi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ void nmidi::do_lute_music()
for (i=0; i< STRINGS; i++)
saved[i] = 0;

snprintf(s, (size_t)sizeof(s), "tab %s copyright 1995-2023 by Wayne Cripps", VERSION);
snprintf(s, (size_t)sizeof(s), "tab %s copyright 1995-2024 by Wayne Cripps", VERSION);
ntext(Copyright, s);
ntext(Text, "converted by TAB");
ntext(Track, "lute");
Expand Down

0 comments on commit add2f1e

Please sign in to comment.