Skip to content

Commit

Permalink
missing else (prevented .relight processing in relight-cli).
Browse files Browse the repository at this point in the history
  • Loading branch information
ponchio committed Sep 5, 2024
1 parent bc8b261 commit 6dab1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relight-cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ int main(int argc, char *argv[]) {
return 1;
}

} if(info.suffix() == "json") {
} else if(info.suffix() == "json") {
return convertToRTI(input.c_str(), output.c_str());

} else if(info.suffix() == "rti" || info.suffix() == "ptm") {
Expand Down

0 comments on commit 6dab1b5

Please sign in to comment.