Commit 7482084b authored by Marek Szczerba's avatar Marek Szczerba
Browse files

Support for output of main orientation, tracked rotation, and combined...

Support for output of main orientation, tracked rotation, and combined orientation vectors using command line
parent 7b85b968
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2945,11 +2945,11 @@ static void parseOption(
            break;
        case CmdLnOptionId_trackedRotationOutputFile:
            assert( numOptionValues == 1 );
            strncmp( args->trackedOrientationOutputFilePath, optionValues[0], RENDERER_MAX_CLI_ARG_LENGTH - 1 );
            strncpy( args->trackedOrientationOutputFilePath, optionValues[0], RENDERER_MAX_CLI_ARG_LENGTH - 1 );
            break;
        case CmdLnOptionId_combinedOrientationOutputFile:
            assert( numOptionValues == 1 );
            strncmp( args->combinedOrientationOutputFilePath, optionValues[0], RENDERER_MAX_CLI_ARG_LENGTH - 1 );
            strncpy( args->combinedOrientationOutputFilePath, optionValues[0], RENDERER_MAX_CLI_ARG_LENGTH - 1 );
            break;
#endif
        case CmdLnOptionId_customHrtfFile: