diff options
Diffstat (limited to 'src/displayapp/screens/Twos.h')
| -rw-r--r-- | src/displayapp/screens/Twos.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/displayapp/screens/Twos.h b/src/displayapp/screens/Twos.h index 4e6980f5..d983d136 100644 --- a/src/displayapp/screens/Twos.h +++ b/src/displayapp/screens/Twos.h @@ -36,11 +36,15 @@ namespace Pinetime { bool placeNewTile(); }; } - template<> + + template <> struct AppTraits<Apps::Twos> { static constexpr Apps app = Apps::Twos; static constexpr const char* icon = "2"; - static Screens::Screen *Create(AppControllers& /*controllers*/) { return new Screens::Twos(); }; + + static Screens::Screen* Create(AppControllers& /*controllers*/) { + return new Screens::Twos(); + }; }; } } |
