Skip to content

Commit

Permalink
SAGA: Fix typo in commit 6a49654
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Jul 12, 2015
1 parent 6a49654 commit 5b7dc80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/saga/music.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ MusicDriver::MusicDriver() : _isGM(false) {
if (Common::File::exists("INSTR.AD") && Common::File::exists("INSTR.OPL")) {
_milesAudioMode = true;
_driver = Audio::MidiDriver_Miles_AdLib_create("INSTR.AD", "INSTR.OPL");
} else if (Common::File::exists("INSTR.AD") && Common::File::exists("INSTR.OPL")) {
} else if (Common::File::exists("SAMPLE.AD") && Common::File::exists("SAMPLE.OPL")) {
_milesAudioMode = true;
_driver = Audio::MidiDriver_Miles_AdLib_create("SAMPLE.AD", "SAMPLE.OPL");
} else {
Expand Down

0 comments on commit 5b7dc80

Please sign in to comment.