(GX) No public visibility for gx_set_aspect

This commit is contained in:
twinaphex 2013-03-09 22:47:09 +01:00
parent 13de2c5acd
commit dece16ea12
2 changed files with 2 additions and 3 deletions

View File

@ -270,7 +270,7 @@ const char *gx_get_video_mode(void)
return format;
}
void gx_set_aspect_ratio(void *data, unsigned aspectratio_idx)
static void gx_set_aspect_ratio(void *data, unsigned aspectratio_idx)
{
gx_video_t *gx = (gx_video_t*)driver.video_data;

View File

@ -32,8 +32,7 @@ typedef struct gx_video
} gx_video_t;
void gx_set_video_mode(unsigned fbWidth, unsigned lines);
const char *gx_get_video_mode();
void gx_set_aspect_ratio(void *data, unsigned aspectratio_idx);
const char *gx_get_video_mode(void);
#endif