More work on calculator

This commit is contained in:
Josh 2024-05-08 14:52:10 -04:00
parent a6580f004c
commit c78003b70c
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#include "displayapp/screens/Timer.h"
#include "displayapp/screens/Twos.h"
#include "displayapp/screens/Tile.h"
#include "displayapp/screens/Calculator.h"
#include "displayapp/screens/ApplicationList.h"
#include "displayapp/screens/WatchFaceDigital.h"
#include "displayapp/screens/WatchFaceAnalog.h"

View File

@ -74,7 +74,7 @@ namespace Pinetime {
static constexpr const char* icon = Screens::Symbols::dice;
static Screens::Screen* Create(AppControllers& controllers) {
return new Screens::Calculator();
}
};
};
}
}