diff --git a/rtengine/procparams.cc b/rtengine/procparams.cc index 4fb7942e9..cf37e7721 100644 --- a/rtengine/procparams.cc +++ b/rtengine/procparams.cc @@ -42,7 +42,7 @@ using namespace std; namespace rtengine { namespace procparams { -const char *RAWParams::methodstring[RAWParams::numMethods]={"amaze","igv","lmmse","eahd", "hphd", "vng4", "dcb", "ahd", "fast" }; +const char *RAWParams::methodstring[RAWParams::numMethods]={"amaze","igv","lmmse","eahd", "hphd", "vng4", "dcb", "ahd", "fast", "none" }; const char *RAWParams::ff_BlurTypestring[RAWParams::numFlatFileBlurTypes]={/*"Parametric",*/ "Area Flatfield", "Vertical Flatfield", "Horizontal Flatfield", "V+H Flatfield"}; std::vector WBParams::wbEntries; diff --git a/rtengine/procparams.h b/rtengine/procparams.h index 1f43c8462..14792d859 100644 --- a/rtengine/procparams.h +++ b/rtengine/procparams.h @@ -778,7 +778,7 @@ class RAWParams { public: // enum eMethod{eahd,hphd,vng4,dcb,amaze,ahd,IGV_noise,fast, // numMethods }; // This MUST be the last enum - enum eMethod{amaze,igv,lmmse,eahd,hphd,vng4,dcb,ahd,fast, + enum eMethod{amaze,igv,lmmse,eahd,hphd,vng4,dcb,ahd,fast,none, numMethods }; // This MUST be the last enum static const char *methodstring[numMethods];