Add files via upload

Fixed errors after variable changes
This commit is contained in:
alphanu1 2018-03-26 23:49:33 +01:00 committed by GitHub
parent cf422226e6
commit d7d1d1d5b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 10 deletions

View File

@ -33,7 +33,7 @@ void check_first_run()
first_run = 1;
}
void switch_res(int width, int height, int f_restore)
void switch_res(int width, int height, int f_restore, int ra_hz)
{ /* Place holder for Linux function to swith resolutions */

View File

@ -17,5 +17,5 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
void check_first_run();
void switch_res(int width, int height, int f_restore);
void switch_res(int width, int height, int f_restore,int ra_hz);
void video_restore();

View File

@ -114,8 +114,12 @@ void switch_res_crt(int width, int height){
if ( height > 100)
{
switch_res(width, height,0);
FILE *ben_res = fopen("ra_res_hz.txt", "a");
fprintf (ben_res, "%s%d%s%d%s%d%s%lf\n","SuperRes @ 2560 ",width," x ", height," @ ", ra_set_core_hz," Apsect ", fly_aspect);
fclose(ben_res);
switch_res(width, height,0,ra_set_core_hz);
crt_poke_video();
ra_tmp_height = ra_core_height;
ra_tmp_width = ra_core_width;

View File

@ -29,5 +29,4 @@ void screen_setup_aspect(int width, int height);
void switch_res_crt(int width, int height);
void aspect_ratio_switch(int width,int height);
void switch_crt_hz();
void switch_res(int width, int height, int f_restore);
void video_restore();

View File

@ -35,9 +35,8 @@ void check_first_run()
first_run = 1;
}
void switch_res(int width, int height, int f_restore)
void switch_res(int width, int height, int f_restore,int ra_hz)
{ /* windows function to swith resolutions */
DEVMODE curDevmode;
DEVMODE devmode;
DWORD flags = 0;
@ -46,7 +45,7 @@ void switch_res(int width, int height, int f_restore)
int freq;
if (f_restore == 0)
{
freq = ra_set_core_hz;
freq = ra_hz;
}
else
{
@ -146,5 +145,5 @@ void switch_res(int width, int height, int f_restore)
void video_restore()
{
switch_res(orig_width, orig_height,1);
switch_res(orig_width, orig_height,0,60);
}

View File

@ -18,5 +18,5 @@
*/
void check_first_run();
void switch_res(int width, int height, int f_restore);
void switch_res(int width, int height, int f_restore, int ra_hz);
void video_restore();