13
0

volatile means hardware-volatile.

This commit is contained in:
Paul Davis 2016-02-22 15:25:28 -05:00
parent 52cb196695
commit b2dc5a52b7

View File

@ -61,7 +61,7 @@ struct _PianoKeyboard
int note_being_pressed_using_mouse;
int last_key;
gboolean monophonic;
volatile struct PKNote notes[NNOTES];
struct PKNote notes[NNOTES];
/* Table used to translate from PC keyboard character to MIDI note number. */
GHashTable *key_bindings;
};