--- xmil/sound/psggeng.c 2004/08/17 16:52:46 1.3 +++ xmil/sound/psggeng.c 2008/06/02 20:07:32 1.4 @@ -61,21 +61,21 @@ void SOUNDCALL psggen_getpcm(PSGGEN psg, if (vol) { samp = 0; switch(mixer & 9) { - case 0: // no mix + case 0: /* no mix */ if (tone->puchi) { tone->puchi--; samp += vol << PSGADDEDBIT; } break; - case 1: // tone only + case 1: /* tone only */ for (i=0; i<(1 << PSGADDEDBIT); i++) { tone->count += tone->freq; samp += vol * ((tone->count>=0)?1:-1); } break; - case 8: // noise only + case 8: /* noise only */ noise = noisetbl; for (i=0; i<(1 << PSGADDEDBIT); i++) { samp += vol * ((noise & 1)?1:-1);