summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/Clock.cpp
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2020-01-26 15:44:26 +0100
committerGitHub <noreply@github.com>2020-01-26 15:44:26 +0100
commit7c03810f46ff1f7accd2f5adb7404b4f2cb723d9 (patch)
treef720612013c3518b54ecd22ccfc5aef6917d3023 /src/DisplayApp/Screens/Clock.cpp
parent9dc4e32e36eb1167ee241cdf8027089cad593cf1 (diff)
parent6491a7c3a0738d6e6ef3bf57da460f61298d1cd9 (diff)
Merge pull request #19 from JF002/spi-dma
Spi dma
Diffstat (limited to 'src/DisplayApp/Screens/Clock.cpp')
-rw-r--r--src/DisplayApp/Screens/Clock.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DisplayApp/Screens/Clock.cpp b/src/DisplayApp/Screens/Clock.cpp
index 153f4f2e..155cb581 100644
--- a/src/DisplayApp/Screens/Clock.cpp
+++ b/src/DisplayApp/Screens/Clock.cpp
@@ -9,10 +9,10 @@ using namespace Pinetime::Applications::Screens;
void Clock::Refresh(bool fullRefresh) {
if(fullRefresh) {
gfx.FillRectangle(0,0,240,240,0x0000);
- currentChar[0] = 0;
- currentChar[1] = 0;
- currentChar[2] = 0;
- currentChar[3] = 0;
+ currentChar[0] = 1;
+ currentChar[1] = 2;
+ currentChar[2] = 3;
+ currentChar[3] = 4;
auto dummy = currentDateTime.Get();
}