diff options
author | Max Horn | 2009-02-15 22:34:41 +0000 |
---|---|---|
committer | Max Horn | 2009-02-15 22:34:41 +0000 |
commit | 29611bc7ead4d3d5fc9df63c04dd9e2577805557 (patch) | |
tree | 42d26aab7ab2e7e97fe5b4763281d8071d878eed /engines/sci/sfx/softseq/fmopl.h | |
parent | 921e6ff5cf3944c1a62a3ad9a91c29bb21aa9942 (diff) | |
download | scummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.tar.gz scummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.tar.bz2 scummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.zip |
SCI: Run astyle to make the code be more compliant with our Code Formatting Guidelines: sfx dir
svn-id: r38322
Diffstat (limited to 'engines/sci/sfx/softseq/fmopl.h')
-rw-r--r-- | engines/sci/sfx/softseq/fmopl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/sfx/softseq/fmopl.h b/engines/sci/sfx/softseq/fmopl.h index 0250c23a5a..c8ec230515 100644 --- a/engines/sci/sfx/softseq/fmopl.h +++ b/engines/sci/sfx/softseq/fmopl.h @@ -43,9 +43,9 @@ enum { }; -typedef void (*OPL_TIMERHANDLER)(int channel,double interval_Sec); -typedef void (*OPL_IRQHANDLER)(int param,int irq); -typedef void (*OPL_UPDATEHANDLER)(int param,int min_interval_us); +typedef void (*OPL_TIMERHANDLER)(int channel, double interval_Sec); +typedef void (*OPL_IRQHANDLER)(int param, int irq); +typedef void (*OPL_UPDATEHANDLER)(int param, int min_interval_us); #define OPL_TYPE_WAVESEL 0x01 /* waveform select */ @@ -64,7 +64,7 @@ typedef struct fm_opl_slot { guint32 mul; /* multiple :ML_TABLE[ML] */ guint32 Cnt; /* frequency count */ guint32 Incr; /* frequency step */ - + /* envelope generator state */ guint8 eg_typ;/* envelope type flag */ guint8 evm; /* envelope phase */ @@ -121,7 +121,7 @@ typedef struct fm_opl_f { /* Rythm sention */ guint8 rythm; /* Rythm mode , key flag */ - + /* time tables */ int AR_TABLE[75]; /* atttack rate tables */ int DR_TABLE[75]; /* decay rate tables */ |