ref: 11e25b5aa51c9072800581b6c4d7050fd7b06b19
parent: 00fdea492f65cb5c05616232effe27884cc66b6b
author: Gabriel Ravier <gabravier@gmail.com>
date: Fri Jun 14 16:56:48 EDT 2019
Fixed indentation by using spaces instead of tabs when appropriate Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
--- a/src/PixTone.cpp
+++ b/src/PixTone.cpp
@@ -139,13 +139,13 @@
c = (int)dVolume % 256;
d = (int)((double)(i * 0x100) / ptp->size);
pData[i] = gWaveModelTable[ptp->oMain.model][a]
- * ptp->oMain.top
- / 64
- * (gWaveModelTable[ptp->oVolume.model][c] * ptp->oVolume.top / 64 + 64)
- / 64
- * envelopeTable[d]
- / 64
- + 128;
+ * ptp->oMain.top
+ / 64
+ * (gWaveModelTable[ptp->oVolume.model][c] * ptp->oVolume.top / 64 + 64)
+ / 64
+ * envelopeTable[d]
+ / 64
+ + 128;
if (gWaveModelTable[ptp->oPitch.model][b] < 0)
dMain = d1 - d1 * 0.5 * -gWaveModelTable[ptp->oPitch.model][b] * ptp->oPitch.top / 64.0 / 64.0 + dMain;