RCS file: /cvsroot/scummvm/scummvm/sound/fmopl.h,v
retrieving revision 1.11
diff -u -r1.11 fmopl.h
|
|
|
27 | 27 | #define FMOPL_H_ |
28 | 28 | |
29 | 29 | #include "common/scummsys.h" |
| 30 | #include "common/util.h" |
30 | 31 | |
31 | 32 | enum { |
32 | 33 | FMOPL_ENV_BITS_HQ = 16, |
… |
… |
|
138 | 139 | int IRQParam; /* IRQ parameter */ |
139 | 140 | OPL_UPDATEHANDLER UpdateHandler; /* stream update handler */ |
140 | 141 | int UpdateParam; /* stream update parameter */ |
| 142 | |
141 | 143 | } FM_OPL; |
142 | 144 | |
143 | 145 | /* ---------- Generic interface section ---------- */ |
… |
… |
|
158 | 160 | int OPLTimerOver(FM_OPL *OPL, int c); |
159 | 161 | void OPLWriteReg(FM_OPL *OPL, int r, int v); |
160 | 162 | void YM3812UpdateOne(FM_OPL *OPL, int16 *buffer, int length); |
| 163 | |
| 164 | static Common::RandomSource oplRnd; /* OPL random number generator */ |
| 165 | |
161 | 166 | #endif |