~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to CorsixTH/Src/th_sound.cpp

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
        return 0;
140
140
    }
141
141
#define mul64(a, b) (static_cast<uint64_t>(a) * static_cast<uint64_t>(b))
142
 
    return static_cast<size_t>(mul64(iWaveDataLength, 8000) / 
 
142
    return static_cast<size_t>(mul64(iWaveDataLength, 8000) /
143
143
        mul64(mul64(iWaveBitsPerSample, iWaveChannelCount), iWaveSampleRate));
144
144
#undef mul64
145
145
}