diff options
-rw-r--r-- | pico-watch.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp index 282ae4e..5995388 100644 --- a/pico-watch.cpp +++ b/pico-watch.cpp @@ -7,7 +7,6 @@ #include "pico/util/datetime.h" #include "hardware/sync.h" #else -#include <chrono> #include <thread> #include <iostream> #endif @@ -42,9 +41,6 @@ bool cb_status_check(struct repeating_timer *t) { } int main() { -#ifdef SDL2_BUILD - using namespace std::chrono_literals; -#endif init_all(); printf("~~~==~~~"); std::cerr << std::endl; @@ -69,7 +65,7 @@ int main() { #ifndef SDL2_BUILD __wfi(); #else - ;//std::this_thread::sleep_for(10ms); + ; #endif else if (g_s.app_switch_requested) { app_mgr::app_switch(g_s.foreground_app, g_s.app_switch_to_app); |