Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a few quick fixes #66

Merged
merged 3 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ permalink: /guides/:title
collections:
games:
output: true
permalink: /games/:path/
redirects:
output: true
permalink: /:path
videos:
output: true
permalink: /games/:path/videos
permalink: /games/:path/videos/


### Analytics ###
Expand Down
3 changes: 2 additions & 1 deletion _includes/games.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<img
src="/assets/games/{{ game.game-id }}.png"
width="264"
height="352" />
height="352"
alt="{{ game.long-name }}" />
</a>
</div>
{% endfor %}
Expand Down
3 changes: 2 additions & 1 deletion _layouts/game.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ <h1>{{ game.long-name }}</h1>
<img
src="/assets/games/{{ game.game-id }}.png"
width="264"
height="352" />
height="352"
alt="{{ game.long-name }} cover art" />
</div>
<div class="d-grid col-md-auto col-12 text-md-start">
<div {{ question-tags }}>
Expand Down
4 changes: 2 additions & 2 deletions _posts/dread/2024-03-10-export-romfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ First, download and setup Ryujinx. Make sure you follow their start-up guide aft

Once you've set it up, navigate to **Options -> Settings** to add the directory with your game image. Your game should be shown in Ryujinx now.

![](/assets/guides/romfs/ryujinx1.png)
![Ryujinx main screen](/assets/guides/romfs/ryujinx1.png)

If you wish to use version 2.1.0, right click on the game in Ryujinx and select Manage Title Updates. Then apply the update .nsp.

Finally, right click on the game and select **Extract Data -> RomFS**.

![](/assets/guides/romfs/ryujinx2.png)
![Ryujinx main screen, showing the right-click context menus to extract the RomFS](/assets/guides/romfs/ryujinx2.png)

Be sure to use the same version of RomFS as you intend to play the game with! If your RomFS dump does not match your game, it can cause problems with the randomizer.

Expand Down
8 changes: 4 additions & 4 deletions _posts/dread/2024-03-10-install-smm.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ Start by downloading the latest release of SimpleModManager here: https://github

Copy it to the `atmosphere` folder on your SD card (or wherever you install homebrew apps) and launch the application.

![](/assets/guides/smm/smm1.png)
![SimpleModManager main screen](/assets/guides/smm/smm1.png)

Select Metroid Dread from the games list. **You must export a game in Randovania before Dread will appear in the games list!**

![](/assets/guides/smm/smm2.png)
![Metroid Dread screen in SMM](/assets/guides/smm/smm2.png)

All of your randomized games will be displayed here. You may have multiple randomized games on your Switch, but be careful: *only one can be active at a time*. Ensure that you deactivate any old games before activating a new one.

Choose the game you want to activate, and press A to apply. You can also deactivate any old games by choosing them and pressing X.

![](/assets/guides/smm/smm3.png)
![SMM applying the desired mod](/assets/guides/smm/smm3.png)

When you see **Active** on exactly one game, everything is finished and you're ready to launch the game and play.

![](/assets/guides/smm/smm4.png)
![SMM showing the desired mod as Active](/assets/guides/smm/smm4.png)
Loading