Commit b820c048 authored by stoutjesdijk's avatar stoutjesdijk 🎧
Browse files

merge 109/343

parent 5ecd1001
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -956,7 +956,7 @@ static bool parseCmdlIVAS_dec(
            char tmp[4];
            strcpy( tmp, argv[i + 1] );
#endif
#ifdef FIX_I109_ORIENTATION_TRACKING // TODO @Philips needs merge with FIX_343_TO_UPPER
#ifdef FIX_I109_ORIENTATION_TRACKING
            char *tmp = to_upper( argv[i + 1] );
            if ( strcmp( to_upper( tmp ), "NONE" ) == 0 )
            {
@@ -964,10 +964,12 @@ static bool parseCmdlIVAS_dec(
            }
            else if ( strcmp( to_upper( tmp ), "REF" ) == 0 )
#else


#ifdef FIX_343_TO_UPPER
            char tmp[4];
            strcpy( tmp, argv[i + 1] );
#endif /* 343 */
            if ( strcmp( to_upper( tmp ), "REF" ) == 0 )
#endif
#endif /* 109 */
            {
                arg->orientation_tracking = IVAS_PUBLIC_ORIENT_TRK_REF;
            }