diff options
author | ConfuSomu | 2021-03-01 23:25:53 -0500 |
---|---|---|
committer | ConfuSomu | 2021-03-01 23:25:53 -0500 |
commit | a304e37c5fb70bb465165105f484a9b2f2c5393f (patch) | |
tree | d96634827617e774b9cfec9202339b9179cca322 /apps | |
parent | 888675141118cb1cabb774cbe0a598ab9b5ca19d (diff) | |
download | pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.tar pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.tar.gz pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.zip |
Use bool in bgrefresh
Diffstat (limited to 'apps')
-rw-r--r-- | apps/home_menu.cpp | 2 | ||||
-rw-r--r-- | apps/home_menu.hpp | 2 | ||||
-rw-r--r-- | apps/main_clock.cpp | 2 | ||||
-rw-r--r-- | apps/main_clock.hpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/apps/home_menu.cpp b/apps/home_menu.cpp index 910ebac..b1b6ca1 100644 --- a/apps/home_menu.cpp +++ b/apps/home_menu.cpp @@ -83,7 +83,7 @@ namespace app_home_menu { } // Processor intensive operations and functions related to drawing to the screen should only be done when the app is in_foreground(=1). This function is only called when the app is init. - int bgrefresh(Api *app_api, char in_foreground) { + int bgrefresh(Api *app_api, bool in_foreground) { return 1; } diff --git a/apps/home_menu.hpp b/apps/home_menu.hpp index 033dc6b..366a248 100644 --- a/apps/home_menu.hpp +++ b/apps/home_menu.hpp @@ -10,7 +10,7 @@ namespace app_home_menu { int init(Api *app_api); int render(Api *app_api); int btnpressed(Api *app_api, uint gpio); - int bgrefresh(Api *app_api, char in_foreground); + int bgrefresh(Api *app_api, bool in_foreground); int destroy(Api *app_api); } diff --git a/apps/main_clock.cpp b/apps/main_clock.cpp index 895a7b9..9fa8f98 100644 --- a/apps/main_clock.cpp +++ b/apps/main_clock.cpp @@ -69,7 +69,7 @@ namespace app_main_clock { } // Processor intensive operations and functions related to drawing to the screen should only be done when the app is in_foreground(=1). This function is only called when the app is init. - int bgrefresh(Api *app_api, char in_foreground) { + int bgrefresh(Api *app_api, bool in_foreground) { return 1; } diff --git a/apps/main_clock.hpp b/apps/main_clock.hpp index 5440c1f..e1d9469 100644 --- a/apps/main_clock.hpp +++ b/apps/main_clock.hpp @@ -10,7 +10,7 @@ namespace app_main_clock { int init(Api *app_api); int render(Api *app_api); int btnpressed(Api *app_api, uint gpio); - int bgrefresh(Api *app_api, char in_foreground); + int bgrefresh(Api *app_api, bool in_foreground); int destroy(Api *app_api); } |