Fix broken non OMP build

This commit is contained in:
Ingo Weyrich 2019-12-02 19:46:00 +01:00
parent f95acfe74e
commit a2b0167339
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@
#pragma once
#include <array>
#include <map>
#include <memory>
#include <string>
#include <sstream>

View File

@ -131,7 +131,7 @@ void LFModifier::processVignette3Channels(int width, int height, float** rawData
#else
void LFModifier::processVignette3Channels(int width, int height, float** rawData) const
{
data_->ApplyColorModification(rawData[y], 0, 0, width, height, LF_CR_3(RED, GREEN, BLUE), width * 3 * sizeof(float));
data_->ApplyColorModification(rawData[0], 0, 0, width, height, LF_CR_3(RED, GREEN, BLUE), width * 3 * sizeof(float));
}
#endif