summaryrefslogtreecommitdiffstats
path: root/minui/graphics.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-15 21:22:52 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-15 21:22:52 +0200
commita441133871b4ad361c3c873b2b2faca500b2afb8 (patch)
tree625c21a7688ed613dd22fc9fc9e6c68cec7c44bc /minui/graphics.cpp
parentam 98bfb6f7: am 6e435abf: Merge "Move the menu header out of the menu." (diff)
parentam 7176a617: Merge "Don\'t use typedefs that hide *s." (diff)
downloadandroid_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.gz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.bz2
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.lz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.xz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.zst
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.zip
Diffstat (limited to 'minui/graphics.cpp')
-rw-r--r--minui/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/graphics.cpp b/minui/graphics.cpp
index f240f4bbd..f09f1c6b0 100644
--- a/minui/graphics.cpp
+++ b/minui/graphics.cpp
@@ -326,7 +326,7 @@ static void gr_test() {
gr_clear();
gr_color(255, 0, 0, 255);
- gr_surface frame = images[x%frames];
+ GRSurface* frame = images[x%frames];
gr_blit(frame, 0, 0, frame->width, frame->height, x, 0);
gr_color(255, 0, 0, 128);