summaryrefslogtreecommitdiff
path: root/audio/soundtracker/files/patch-app__track-editor.c
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
commit9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch)
tree9b071a8105704e992946dcd6b801e9fcb7635142 /audio/soundtracker/files/patch-app__track-editor.c
parentMooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, (diff)
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
Diffstat (limited to 'audio/soundtracker/files/patch-app__track-editor.c')
-rw-r--r--audio/soundtracker/files/patch-app__track-editor.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/audio/soundtracker/files/patch-app__track-editor.c b/audio/soundtracker/files/patch-app__track-editor.c
deleted file mode 100644
index c2f5ed22afd7..000000000000
--- a/audio/soundtracker/files/patch-app__track-editor.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- app/track-editor.c.orig Sat Feb 25 21:30:54 2006
-+++ app/track-editor.c Sun Feb 26 13:08:32 2006
-@@ -603,6 +603,8 @@
- }
-
- if(!GUI_ENABLED && !ASYNCEDIT) { // Recording mode
-+ XMNote *note;
-+
- if(pressed){ // Insert note
-
- for(c = 0; c < 32; c++){ // Cleanup
-@@ -624,7 +626,7 @@
- reckey[c].chn = t->cursor_ch;
- reckey[c].act = TRUE;
-
-- XMNote *note = &t->curpattern->channels[t->cursor_ch][t->patpos];
-+ note = &t->curpattern->channels[t->cursor_ch][t->patpos];
- note->note = i;
- note->instrument = gui_get_current_instrument();
- tracker_redraw_current_row(t);
-@@ -645,7 +647,7 @@
- if (!insert_noteoff)
- goto fin_note;
-
-- XMNote *note = &t->curpattern->channels[reckey[c].chn][t->patpos];
-+ note = &t->curpattern->channels[reckey[c].chn][t->patpos];
- note->note = 97;
- note->instrument = 0;
- tracker_redraw_current_row(t);