mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 23:13:01 +00:00
Clang can you stop complaining
This commit is contained in:
parent
fc4aea3c91
commit
7d89708bf7
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ void FurnaceGUI::drawWaveEdit() {
|
||||||
if (ImGui::Button("Amplify")) {
|
if (ImGui::Button("Amplify")) {
|
||||||
if (waveGenAmplify!=1.0f) e->lockEngine([this,wave]() {
|
if (waveGenAmplify!=1.0f) e->lockEngine([this,wave]() {
|
||||||
for (int i=0; i<wave->len; i++) {
|
for (int i=0; i<wave->len; i++) {
|
||||||
wave->data[i]=CLAMP(round((float)(wave->data[i]-((wave->max+1)/2))*waveGenAmplify),(int)(-((wave->max+1)/2)),(int)(wave->max/2))+((wave->max+1)/2);
|
wave->data[i]=CLAMP(round((float)(wave->data[i]-(int)( /* Clang can you stop complaining */ (int)(wave->max+1)/(int)2))*waveGenAmplify),(int)(-((wave->max+1)/2)),(int)(wave->max/2))+(int)((wave->max+1)/2);
|
||||||
}
|
}
|
||||||
MARK_MODIFIED;
|
MARK_MODIFIED;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue