V3.84 disable ROM scanning and game issue
Posted: Thu Apr 18, 2019 12:06 pm
Dont see the entries Im use to to disable rom scanning on start up, how do you do it now?
Also tac-scan opens too large on screen again. Cant find the lines I used last time to fix that Dee2er told me to do.
Heres the fix from v3.83:
## horizontal monitor settings
# vertical game on horizontal monitor
elif [ $rot == 90 ] || [ $rot == 270 ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle"
#vector settings
elif [ $screen == vector ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle"
# 480p high res settings (untested at other res)
elif [ $hdmimode == hdmi_mode=1 ]; then
aconfig="-unevenstretch"
else
# low res horizontal monitor settings
aconfig="-intscaley 1 -unevenstretchx -uifont uismall.bdf"
fi
heres v3.84:
## horizontal monitor settings
# vertical game on horizontal monitor
elif [ $rot == 90 ] || [ $rot == 270 ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle -uifont uismall.bdf"
# 480p high res settings (untested at other res)
elif [ $hdmimode == hdmi_mode=1 ]; then
aconfig="-unevenstretch"
else
# low res horizontal monitor settings
aconfig="-intscaley 1 -unevenstretchx -uifont uismall.bdf"
fi
Do I just add in the vector settings as seen? Dont want to screw anything up..
Also tac-scan opens too large on screen again. Cant find the lines I used last time to fix that Dee2er told me to do.
Heres the fix from v3.83:
## horizontal monitor settings
# vertical game on horizontal monitor
elif [ $rot == 90 ] || [ $rot == 270 ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle"
#vector settings
elif [ $screen == vector ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle"
# 480p high res settings (untested at other res)
elif [ $hdmimode == hdmi_mode=1 ]; then
aconfig="-unevenstretch"
else
# low res horizontal monitor settings
aconfig="-intscaley 1 -unevenstretchx -uifont uismall.bdf"
fi
heres v3.84:
## horizontal monitor settings
# vertical game on horizontal monitor
elif [ $rot == 90 ] || [ $rot == 270 ]; then
aconfig="-keepaspect -unevenstretch -nosyncrefresh -nowaitvsync -throttle -uifont uismall.bdf"
# 480p high res settings (untested at other res)
elif [ $hdmimode == hdmi_mode=1 ]; then
aconfig="-unevenstretch"
else
# low res horizontal monitor settings
aconfig="-intscaley 1 -unevenstretchx -uifont uismall.bdf"
fi
Do I just add in the vector settings as seen? Dont want to screw anything up..