V3.84 disable ROM scanning and game issue
Moderator: dee2eR
- cool_factor
- Legendary Contributor

- Posts: 409
- Joined: Tue Sep 26, 2017 10:55 am
- Location: Fort Worth TX
V3.84 disable ROM scanning and game issue
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..
Re: V3.84 disable ROM scanning and game issue
to disable the new rom scanner in 3.84 look for this bit in run.sh:
I must have lost that vectors change myself at some point, I must have made it on a test build that didn't go anywhere or something... It should be safe to add back. Looks like it should fit in the same place. Back the file up first to be safe and you shouldn't have any issues.
and hash out the bash line like you would have with the old one.## Scan roms for Attract-Mode list
## accepts 1 command 'all' 'arcade' 'console' 'acnoporn' or 'allnoporn'
bash /boot/launchers/ScanRoms_V007.sh allnoporn >/dev/null 2>&1
I must have lost that vectors change myself at some point, I must have made it on a test build that didn't go anywhere or something... It should be safe to add back. Looks like it should fit in the same place. Back the file up first to be safe and you shouldn't have any issues.
- cool_factor
- Legendary Contributor

- Posts: 409
- Joined: Tue Sep 26, 2017 10:55 am
- Location: Fort Worth TX
Re: V3.84 disable ROM scanning and game issue
Ill give it a try.. thanks!
- cool_factor
- Legendary Contributor

- Posts: 409
- Joined: Tue Sep 26, 2017 10:55 am
- Location: Fort Worth TX
Re: V3.84 disable ROM scanning and game issue
Adding those lines did nothing. Still loading incorrectly. That fix worked on v3.83 but not v3.84, guessing something else is missing.
Re: V3.84 disable ROM scanning and game issue
What file do you edit for that vector fix?
- cool_factor
- Legendary Contributor

- Posts: 409
- Joined: Tue Sep 26, 2017 10:55 am
- Location: Fort Worth TX
Re: V3.84 disable ROM scanning and game issue
download/file.php?id=85 this is the fix for v3.83, doesnt work with 3.84.
Re: V3.84 disable ROM scanning and game issue
sorry, right you are it doesn't work with 3.84. Not sure what the difference is. I'll try and figure it out and update.
EDIT:
I've figured it out. There are two variables in the launcher that have been commented out (not used without the extra vector settings lines) you will need to uncomment for the special vector settings to work. Look for the type= and screen= lines.
EDIT:
I've figured it out. There are two variables in the launcher that have been commented out (not used without the extra vector settings lines) you will need to uncomment for the special vector settings to work. Look for the type= and screen= lines.
- cool_factor
- Legendary Contributor

- Posts: 409
- Joined: Tue Sep 26, 2017 10:55 am
- Location: Fort Worth TX
Re: V3.84 disable ROM scanning and game issue
Here is the modified mame172.sh in the Launchers folder per what Dee2er explained how to fix. This is for V3.84 only at this point.
- Attachments
-
- mame172.zip
- (944 Bytes) Downloaded 532 times
Re: V3.84 disable ROM scanning and game issue
Great, thanks.


