Skip to content

Commit

Permalink
Release 1.2.2 from Google Code.
Browse files Browse the repository at this point in the history
  • Loading branch information
trash80 committed Jul 26, 2015
1 parent e51fdb4 commit 93ba891
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Arduinoboy/Arduinoboy.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
***************************************************************************
***************************************************************************
* *
* Version: 1.2.1 *
* Date: May 3 2011 *
* Version: 1.2.2 *
* Date: Sept 14 2011 *
* Name: Timothy Lamb *
* Email: [email protected] *
* *
Expand Down
4 changes: 4 additions & 0 deletions Arduinoboy/Mode_MidiGb.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ void modeMidiGb()
midiValueMode = false;
break;
default:
sendByte = false;
midiStatusChannel = incomingMidiByte&0x0F;
midiStatusType = incomingMidiByte&0xF0;
if(midiStatusChannel == memory[MEM_MGB_CH]) {
Expand All @@ -51,6 +52,9 @@ void modeMidiGb()
} else if (midiStatusChannel == memory[MEM_MGB_CH+4]) {
incomingMidiData[0] = midiStatusType+4;
sendByte = true;
} else {
midiValueMode =false;
midiAddressMode=false;
}
if(sendByte) {
sendByteToGameboy(incomingMidiData[0]);
Expand Down

0 comments on commit 93ba891

Please sign in to comment.