summaryrefslogtreecommitdiff
path: root/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'video.h')
-rw-r--r--video.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/video.h b/video.h
index 9831e8c..18720bd 100644
--- a/video.h
+++ b/video.h
@@ -21,7 +21,9 @@
#define VIDEO_H
void update_scanline();
+#ifndef __LIBRETRO__
void update_screen();
+#endif
void init_video();
void video_resolution_large();
void video_resolution_small();
@@ -103,4 +105,8 @@ extern video_filter_type2 screen_filter2;
void set_gba_resolution(video_scale_type scale);
+#ifdef __LIBRETRO__
+extern u16 gba_screen_pixels[GBA_SCREEN_PITCH * GBA_SCREEN_HEIGHT];
+#endif
+
#endif