Fix build warnings and cleanup

This commit is contained in:
alphanu1 2019-02-12 10:26:17 +00:00 committed by GitHub
parent 238a56978d
commit 924fcc2834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ void crt_video_restore(void)
first_run = true;
}
static int crt_compute_dynamic_width(int width)
int crt_compute_dynamic_width(int width)
{
double p_clock = 18000000;
int min_height = 261;

View File

@ -33,7 +33,7 @@ void crt_aspect_ratio_switch(unsigned width, unsigned height);
void crt_video_restore(void);
static int crt_compute_dynamic_width(int width);
int crt_compute_dynamic_width(int width);
RETRO_END_DECLS