From 7832f81a84efbbd0679601def5183796932dd93f Mon Sep 17 00:00:00 2001 From: bugobliterator Date: Fri, 30 Jul 2021 15:44:44 +0530 Subject: [PATCH] AP_Logger: change class name from SITL::SITL to SITL::SIM --- libraries/AP_Logger/AP_Logger_File.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Logger/AP_Logger_File.cpp b/libraries/AP_Logger/AP_Logger_File.cpp index f4789019a0..35d7325a9e 100644 --- a/libraries/AP_Logger/AP_Logger_File.cpp +++ b/libraries/AP_Logger/AP_Logger_File.cpp @@ -1026,7 +1026,7 @@ bool AP_Logger_File::io_thread_alive() const // the IO thread is working with hardware - writing to a physical // disk. Unfortunately these hardware devices do not obey our // SITL speedup options, so we allow for it here. - SITL::SITL *sitl = AP::sitl(); + SITL::SIM *sitl = AP::sitl(); if (sitl != nullptr) { timeout_ms *= sitl->speedup; }