diff options
author | Chris Robinson <[email protected]> | 2011-03-13 06:34:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-03-13 06:34:41 -0700 |
commit | b699aca65b898c90cf94e5c792f3445513538e10 (patch) | |
tree | 938898641590f11c9ad21d9c7afeb97d67cd7ea4 /Alc | |
parent | ffd19fe96101b8a258f30dc6ecab9c633ceb8669 (diff) |
Remove unnecessary casts
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -747,9 +747,9 @@ static void Write_##T##_##chans(ALCdevice *device, T *buffer, ALuint SamplesToDo ALfloat samp = 0.0f; \ for(c = 0;c < MAXCHANNELS;c++) \ samp += DryBuffer[i][c] * Matrix[c][chans[j]]; \ - ((T*)buffer)[ChanMap[chans[j]]] = func(samp); \ + buffer[ChanMap[chans[j]]] = func(samp); \ } \ - buffer = ((T*)buffer) + N; \ + buffer += N; \ } \ } |