This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Sequencer: Work around internal compiler error bug in GCC 4.8.
tags/non-daw-v1.2.0
Jonathan Moore Liles
11 years ago
parent
9837a8f3f7
commit
e6d153c13c
2 changed files
with
7 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
sequencer/src/midievent.C
+0
-6
sequencer/src/midievent.H
+ 7
- 0
sequencer/src/midievent.C
View File
@@ -102,6 +102,13 @@ midievent::note ( char note )
_data.lsb = note & 0x7F;
}
unsigned char
midievent::note ( void ) const
{
return _data.lsb;
}
unsigned char
midievent::note_velocity ( void ) const
{
+ 0
- 6
sequencer/src/midievent.H
View File
@@ -219,12 +219,6 @@ midievent::is_note_off ( void ) const
return (opcode() == NOTE_OFF);
}
inline unsigned char
midievent::note ( void ) const
{
return _data.lsb;
}
inline bool
midievent::operator< ( const midievent &rhs ) const
{
Write
Preview
Loading…
Cancel
Save