Merge pull request #111 from alphanu1/alphanu1-patch-98

Fix build warnings and cleanup
This commit is contained in:
alphanu1 2019-02-12 10:27:29 +00:00 committed by GitHub
commit 55f3edb5ad
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