The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

d/euroc: Fix typo

authored by

Mateo de Mayo and committed by
Moses Turner
49cd45b2 f3b5ea21

+2 -2
+2 -2
src/xrt/drivers/euroc/euroc_player.cpp
··· 42 42 DEBUG_GET_ONCE_FLOAT_OPTION(speed, "EUROC_SPEED", 1.0f) 43 43 DEBUG_GET_ONCE_BOOL_OPTION(paused, "EUROC_PAUSED", false) 44 44 DEBUG_GET_ONCE_BOOL_OPTION(send_all_imus_first, "EUROC_SEND_ALL_IMUS_FIRST", false) 45 - DEBUG_GET_ONCE_BOOL_OPTION(user_source_ts, "EUROC_USER_SOURCE_TS", false) 45 + DEBUG_GET_ONCE_BOOL_OPTION(use_source_ts, "EUROC_USE_SOURCE_TS", false) 46 46 DEBUG_GET_ONCE_BOOL_OPTION(play_from_start, "EUROC_PLAY_FROM_START", false) 47 47 DEBUG_GET_ONCE_BOOL_OPTION(print_progress, "EUROC_PRINT_PROGRESS", false) 48 48 ··· 917 917 playback.speed = debug_get_float_option_speed(); 918 918 playback.paused = debug_get_bool_option_paused(); 919 919 playback.send_all_imus_first = debug_get_bool_option_send_all_imus_first(); 920 - playback.use_source_ts = debug_get_bool_option_user_source_ts(); 920 + playback.use_source_ts = debug_get_bool_option_use_source_ts(); 921 921 playback.play_from_start = debug_get_bool_option_play_from_start(); 922 922 playback.print_progress = debug_get_bool_option_print_progress(); 923 923