forked from sm64-port/sm64-port
-
Notifications
You must be signed in to change notification settings - Fork 33
Home
Mark Street edited this page Feb 1, 2021
·
6 revisions
Three patches come with the port:
- 60 FPS patch
- Show FPS patch
- Puppycam
The process is: apply the patch, re-compile the game.
Navigate back to the sm64-port directory
cd ~/sm64-portEnsure you have the patch utility
pacman -S patch --noconfirmTo apply the 60 FPS patch:
patch -p1 -i enhancements/60fps.patchTo apply the "show FPS" patch:
patch -p1 -i enhancements/fps.patchNOTE: You can press SELECT to toggle the FPS counter on/off.
Remove the previous build
make cleanRecompile
make --jobsThe following build flags are supported:
-
VERSION=eu;usis default, but you can buildeubut it does not run very well -
DISABLE_N3DS_FRAMESKIP=1; disable the naive frameskip if you would prefer the game to lag than drop frames -
DISABLE_AUDIO=1; disables audio entirely
In order to use them, simpkly append them to the final make --jobs command, e.g.
make --jobs DISABLE_AUDIO=1 DISABLE_N3DS_FRAMESKIP=1 VERSION=eu