InfiniTime/docker/infinisim-terminal.patch

18 lines
995 B
Diff
Raw Normal View History

2024-01-16 08:40:54 +00:00
diff --git a/littlefs-do-main.cpp b/littlefs-do-main.cpp
2024-01-17 02:58:06 +00:00
index 0a5dfbd..3e818af 100644
2024-01-16 08:40:54 +00:00
--- a/littlefs-do-main.cpp
+++ b/littlefs-do-main.cpp
2024-01-17 02:58:06 +00:00
@@ -537,10 +537,10 @@ int command_settings(const std::string &program_name, const std::vector<std::str
{
auto clockface = settingsController.GetWatchFace();
auto clockface_str = [](auto val) {
- if (val == Pinetime::Applications::WatchFace::Digital) return "Digital";
+ //if (val == Pinetime::Applications::WatchFace::Digital) return "Digital";
2024-01-16 08:40:54 +00:00
if (val == Pinetime::Applications::WatchFace::Analog) return "Analog";
if (val == Pinetime::Applications::WatchFace::PineTimeStyle) return "PineTimeStyle";
- if (val == Pinetime::Applications::WatchFace::Terminal) return "Terminal";
+ //if (val == Pinetime::Applications::WatchFace::Terminal) return "Terminal";
return "unknown";
}(clockface);
std::cout << "ClockFace: " << static_cast<uint32_t>(clockface) << " " << clockface_str << std::endl;