Skip to content

Mupen64_1.0.10

Compare
Choose a tag to compare
@Madghostek Madghostek released this 12 Mar 21:43
· 1872 commits to master since this release
e44cf93

If you are searching for the plugins and other dependencies to run the emulator, see this https://repack.skazzy3.com/

This release may not be super polished, but it's totally worth it because AVI sound got a major improvement, thanks to BizHawk pros helping. We observed no audio drifting or artifacts like previously.

New lua functions:

  1. isreadonly
  2. getsystemmetrics(id) see winapi docs
  3. loadimage(path)
  4. drawimage(id,l,t,r,b)

Image drawing example:

img = wgui.loadimage("C:\\Users\\nodox\\Desktop\\unknown.png") -- this functions returns image "object"
wgui.drawimage(img,300,300) --optional width and height to resize the image

It is suggested to cache the identifier by executing loadimage call in global scope.

New options scattered around config and menus. One of them is automatic backups, it's a slider but in reality its only on/off (there was supposed to be a more aggresive mode, but its unstable right now)

Savestates now should work on old mupen, but be aware something might be broken... I don't trust mupen code.

Probably more changes I missed, go hunt for them.