Skip to content

Commit

Permalink
Remove \, add int lineOrder_i
Browse files Browse the repository at this point in the history
  • Loading branch information
TodicaIonut authored Mar 20, 2024
1 parent 3a51074 commit e9c3c61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OIIO/WriteOIIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ enum ETuttlePluginComponents {

#define kParamOutputLineOrder "lineOrder"
#define kParamOutputLineOrderLabel "Line Order"
#define kParamOutputLineOrderHint \ "Specifies in what order the scan lines [EXR]\n"
#define kParamOutputLineOrderHint "Specifies in what order the scan lines [EXR]\n"

#define kParamOutputLineOrderOptionIncreasingY "increasingY", "first scan line has lowest y coordinate", "increasingY"
#define kParamOutputLineOrderOptionDecreasingY "decreasingY", "first scan line has highest y coordinate", "decreasingY"
Expand Down Expand Up @@ -1036,6 +1036,7 @@ WriteOIIOPlugin::beginEncodeParts(void* user_data,
int compression_i;
_compression->getValue(compression_i);
string compression;
int lineOrder_i;
_lineOrder->getValue(lineOrder_i);
string lineOrder;

Expand Down

0 comments on commit e9c3c61

Please sign in to comment.