Changeset 205 for sbliveos2/trunk/sblive/cardwo.c
- Timestamp:
- Jun 14, 2007, 3:33:51 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/sblive/cardwo.c
r153 r205 232 232 u8 t = (card_waveout->globalreverb & 0xff) + (wave_out->localreverb & 0xff); 233 233 234 left->send_a = ( t > 255) ? 255 : t;234 left->send_a = ((unsigned)t > 255) ? 255 : t; 235 235 } else { 236 236 left->send_a = 0; … … 240 240 u8 t = (card_waveout->globalchorus & 0xff) + (wave_out->localchorus & 0xff); 241 241 242 left->send_d = ( t > 255) ? 255 : t;242 left->send_d = ((unsigned)t > 255) ? 255 : t; 243 243 } else { 244 244 left->send_d = 0;
Note:
See TracChangeset
for help on using the changeset viewer.