aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'screen_ui.h')
-rw-r--r--screen_ui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/screen_ui.h b/screen_ui.h
index 8e18864d..08a5f44a 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -109,6 +109,8 @@ class ScreenRecoveryUI : public RecoveryUI {
109 109
110 pthread_t progress_thread_; 110 pthread_t progress_thread_;
111 111
112 // The following two are parsed from the image file
113 // (e.g. '/res/images/icon_installing.png').
112 int animation_fps; 114 int animation_fps;
113 int installing_frames; 115 int installing_frames;
114 116
@@ -135,7 +137,7 @@ class ScreenRecoveryUI : public RecoveryUI {
135 void DrawTextLines(int* y, const char* const* lines); 137 void DrawTextLines(int* y, const char* const* lines);
136 138
137 void LoadBitmap(const char* filename, GRSurface** surface); 139 void LoadBitmap(const char* filename, GRSurface** surface);
138 void LoadBitmapArray(const char* filename, int* frames, GRSurface*** surface); 140 void LoadBitmapArray(const char* filename, int* frames, int* fps, GRSurface*** surface);
139 void LoadLocalizedBitmap(const char* filename, GRSurface** surface); 141 void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
140}; 142};
141 143