diff options
author | ConfuSomu | 2021-02-27 18:06:46 -0500 |
---|---|---|
committer | ConfuSomu | 2021-02-27 18:06:46 -0500 |
commit | 85f79065384ba77614ddb0212d22704253321587 (patch) | |
tree | 9aa65c1d813dcda2a81a250e8c1858fec8e13868 /pico-watch.cpp | |
parent | 3dae53c57661168f3638489ca66b68d8076d65b4 (diff) | |
download | pico-watch-85f79065384ba77614ddb0212d22704253321587.tar pico-watch-85f79065384ba77614ddb0212d22704253321587.tar.gz pico-watch-85f79065384ba77614ddb0212d22704253321587.zip |
Refactor API function names
Diffstat (limited to 'pico-watch.cpp')
-rw-r--r-- | pico-watch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp index 181d708..ebc3f12 100644 --- a/pico-watch.cpp +++ b/pico-watch.cpp @@ -24,7 +24,7 @@ int APPS_DESTROY_ON_EXIT[NUMBER_OF_APPS] = {0, 1}; int APPS_IS_INIT[NUMBER_OF_APPS] = {0, 0}; // Only run in background if init int app_init(int app_id) { - app_api.dispFill(0,1); // Clear OLED + app_api.display_fill(0,1); // Clear OLED if (!APPS_IS_INIT[app_id]) { APPS_IS_INIT[app_id] = 1; return (*APPS_FUNC_INIT[app_id])(&app_api); |