Editing PS2 Emulation
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1,121: | Line 1,121: | ||
| || || Hooks || | | || || Hooks || | ||
|- | |- | ||
|AddVsyncHook || | |AddVsyncHook || || emuObj.AddVsyncHook(<task to be done every vsync>) || emuObj.AddVsyncHook(my_function) | ||
my_function can be anything, from simple patches, to extensive hook. | my_function can be anything, from simple patches, to extensive hook. | ||
Example usage can be found in SLUS-21550 features file. some games are not compatible with it and will crash upon startup. | Example usage can be found in SLUS-21550 features file. some games are not compatible with it and will crash upon startup. | ||
Line 1,174: | Line 1,174: | ||
|ThrottleMax || {{Exclusive}} || emuObj.ThrottleMax() || Disable framelimiter during loading screens. | |ThrottleMax || {{Exclusive}} || emuObj.ThrottleMax() || Disable framelimiter during loading screens. | ||
|- | |- | ||
| SetFrameLimiter || | | SetFrameLimiter || || emuObj.SetFrameLimiter() || Disable framelimiter when left empty, enable when any value is added to it. <pre> | ||
local Nolimit = emuObj.SetFrameLimiter() | local Nolimit = emuObj.SetFrameLimiter() | ||
local LimitFrames = emuObj.SetFrameLimiter(1) | local LimitFrames = emuObj.SetFrameLimiter(1) |