aboutsummaryrefslogtreecommitdiff
path: root/sound/mpu401.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-05-12 12:03:36 +0000
committerTorbjörn Andersson2006-05-12 12:03:36 +0000
commitccac2aea20628d66cc7d64085cc8ed744e6450f9 (patch)
treeafea5b224c2c91bdc57c3a6063179d601f0a37fc /sound/mpu401.h
parent4ecee0e0f254ad1023f950190bfcc03f3b0341cf (diff)
downloadscummvm-rg350-ccac2aea20628d66cc7d64085cc8ed744e6450f9.tar.gz
scummvm-rg350-ccac2aea20628d66cc7d64085cc8ed744e6450f9.tar.bz2
scummvm-rg350-ccac2aea20628d66cc7d64085cc8ed744e6450f9.zip
Whitespace changes. (Oh dear, now *I'm* forcing myself to large re-compiles.)
svn-id: r22413
Diffstat (limited to 'sound/mpu401.h')
-rw-r--r--sound/mpu401.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sound/mpu401.h b/sound/mpu401.h
index 719e5653cd..1c7b0b00f7 100644
--- a/sound/mpu401.h
+++ b/sound/mpu401.h
@@ -46,23 +46,23 @@ public:
byte getNumber() { return _channel; }
void release() { _allocated = false; }
- void send (uint32 b);
+ void send(uint32 b);
// Regular messages
- void noteOff (byte note);
- void noteOn (byte note, byte velocity);
- void programChange (byte program);
- void pitchBend (int16 bend);
+ void noteOff(byte note);
+ void noteOn(byte note, byte velocity);
+ void programChange(byte program);
+ void pitchBend(int16 bend);
// Control Change messages
- void controlChange (byte control, byte value);
- void pitchBendFactor (byte value);
+ void controlChange(byte control, byte value);
+ void pitchBendFactor(byte value);
// SysEx messages
- void sysEx_customInstrument (uint32 type, const byte *instr);
+ void sysEx_customInstrument(uint32 type, const byte *instr);
// Only to be called by the owner
- void init (MidiDriver *owner, byte channel);
+ void init(MidiDriver *owner, byte channel);
bool allocate();
};
@@ -70,7 +70,7 @@ public:
class MidiDriver_MPU401 : public MidiDriver {
private:
- MidiChannel_MPU401 _midi_channels [16];
+ MidiChannel_MPU401 _midi_channels[16];
Common::Timer::TimerProc _timer_proc;
uint16 _channel_mask;
@@ -83,7 +83,7 @@ public:
uint32 property(int prop, uint32 param);
MidiChannel *allocateChannel();
- MidiChannel *getPercussionChannel() { return &_midi_channels [9]; }
+ MidiChannel *getPercussionChannel() { return &_midi_channels[9]; }
};