| 5183 | |
| 5184 | #ifdef mxMetering |
| 5185 | void fxCheckMeter(void* console) |
| 5186 | { |
| 5187 | txMachine* the = console; |
| 5188 | if (the->meterInterval && (the->meterIndex > the->meterCount)) { |
| 5189 | fxCheckMetering(the); |
| 5190 | } |
| 5191 | } |
| 5192 | void fxMeterSome(void* console, txU4 count) |
| 5193 | { |
| 5194 | txMachine* the = console; |
nothing calls this directly
no test coverage detected