18 lines
995 B
Diff
18 lines
995 B
Diff
diff --git a/littlefs-do-main.cpp b/littlefs-do-main.cpp
|
|
index 0a5dfbd..3e818af 100644
|
|
--- a/littlefs-do-main.cpp
|
|
+++ b/littlefs-do-main.cpp
|
|
@@ -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";
|
|
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;
|