diff options
Diffstat (limited to 'screen_ui.h')
-rw-r--r-- | screen_ui.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/screen_ui.h b/screen_ui.h index 532269f84..d5e589225 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -87,6 +87,9 @@ class ScreenRecoveryUI : public RecoveryUI { static const int kMaxCols = 96; static const int kMaxRows = 96; + static const int kTextXOffset = 8; + static const int kTextYOffset = 4; + // Log text overlay, displayed when a magic key is pressed char text[kMaxRows][kMaxCols]; int text_cols, text_rows; @@ -102,6 +105,8 @@ class ScreenRecoveryUI : public RecoveryUI { int animation_fps; int installing_frames; + protected: + private: int iconX, iconY; |