Reduce cost of setting video mode information when using
vsync_adjust=1/2 or vscale_mode=4/5 from 90ms to 5ms (worst case, most
instances are less than 1ms).
Split video initialization into video_init and video_set_mode.
video_init is called once, video_set_mode is called whenever the mode
changes.
Split hdmi_config into hdmi_config_init and hdmi_config_set_mode. Same
as video_, hdmi_config_init does the bulk of the initialization,
hdmi_config_set_mode is just for parameters that can change based on the
mode.
Load video filter data in loadScalerCfg and persist it.
Calculate a digest for scaler data and use that to determine whether new
data needs to be sent.
Only send gamma information if the filename has changed.
Offload fb module parameter writing to a separate thread via the new
offload system.
Reduce the amount of work being done in set_vrr_mode when vrr is
disabled.
windows - PrintScrn will output the image scaled to the output resolution of the scaler. Windows - LSHIFT - PrintScrn will save the original size from the core.
* Added C64 T64 disk mount support.
* Fixed minor C64 T64 support bugs and minor code cleanup.
* Fixed DIR advance logic.
Changed various init values.
* Added workaround for FileOpen* functions auto-prepend breaking absolute
paths.
Changed T64 tmp path to be absolute.
* round trip xml launch
* roms load
* removed debug
* added binary data and changed rom format
* changed hex format
* fixed bug
* added structure and start/length
* removed base64 support
* removed base64 support
* fixed parsing bugs
* fixed hex parse bug
* fixed parser
* fixing paths
* fixed rbf parser
* fixed initialization bug
* fixed extension removal for when there are multiple extension options
* fixed core path and cleaned up filelength
* added md5 checks to arcade roms
* fixed rbf search
* added error support
* Simplify error checking code
* fixed arcade error message pop up
* fixed bug in part zip initialization
* removed dtdt
* don't load second rom0 if first works
* fixed directory problem
* added more comments
* added / to zip path
* fixed / bug, truncate mame zip error message
* fixed scrolling RBF
* fixed scrolling name and error message
* added code to remove _date in scrolling text
* remove redundant /
The make rules for objects and dependency files must be unique per
language or make won't understand when to rebuild them. Before this
change, if a cpp-file was changed, make would match it to the rule for C
files because it comes first in the `Makefile` and not rebuild anything.