aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/fmtowns_pc98/towns_midi.h
diff options
context:
space:
mode:
authorathrxx2011-05-17 21:43:07 +0200
committerathrxx2011-05-17 21:43:07 +0200
commit7804afd4cb2cbc6c5d291e781029005e304425bf (patch)
tree927b0e0717010b0ffc73c56648a76d0b206748fa /audio/softsynth/fmtowns_pc98/towns_midi.h
parentd2d002bcc2b830176d29459df7045d4ceb00a7bd (diff)
downloadscummvm-rg350-7804afd4cb2cbc6c5d291e781029005e304425bf.tar.gz
scummvm-rg350-7804afd4cb2cbc6c5d291e781029005e304425bf.tar.bz2
scummvm-rg350-7804afd4cb2cbc6c5d291e781029005e304425bf.zip
FM-TOWNS AUDIO: hopefully fix ps2 port compile
Diffstat (limited to 'audio/softsynth/fmtowns_pc98/towns_midi.h')
-rw-r--r--audio/softsynth/fmtowns_pc98/towns_midi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/softsynth/fmtowns_pc98/towns_midi.h b/audio/softsynth/fmtowns_pc98/towns_midi.h
index 2b6e1dff4e..20e986fd5c 100644
--- a/audio/softsynth/fmtowns_pc98/towns_midi.h
+++ b/audio/softsynth/fmtowns_pc98/towns_midi.h
@@ -41,7 +41,7 @@ public:
~MidiDriver_TOWNS();
int open();
- bool isOpen() const { return _open; }
+ bool isOpen() const { return _isOpen; }
void close();
void send(uint32 b);
@@ -76,7 +76,7 @@ private:
uint8 _allocCurPos;
uint8 _rand;
- bool _open;
+ bool _isOpen;
uint8 *_operatorLevelTable;
};