diff --git a/_posts/core/2024-12-02-input-validation.md b/_posts/core/2024-12-02-input-validation.md new file mode 100644 index 00000000..d9d910ce --- /dev/null +++ b/_posts/core/2024-12-02-input-validation.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "Input Validation" +tags: prime1 prime2 +--- +When an error happens when exporting the game, it's important to make sure the game files you are using are the originals with no modifications. Randovania only supports unmodified game files. + +# Verifying your game files + +## Metroid Prime and Metroid Prime 2: Echoes + +Both games only support the GameCube versions of the game, with uncompressed files in the ISO format. + +In order to verify the if your ISO is identical, we recommend using [Dolphin Emulator](https://dolphin-emu.org/). + +{% include blog/figure.html src="/assets/guides/input_validation/dolphin-game-list.png" caption="Dolphin Game List" %} + +Make sure the ISO you want to verify is in Dolphin's Game Folders, then right click → Properties. + +{% include blog/figure.html src="/assets/guides/input_validation/verify-result.png" caption="Game verified, with good dump" %} + +In the new window, select the tab Verify and then press **Verify Integrity**. You should see `Good dump` in `Redump.org Status`. + diff --git a/assets/guides/input_validation/dolphin-game-list.png b/assets/guides/input_validation/dolphin-game-list.png new file mode 100644 index 00000000..de916c98 Binary files /dev/null and b/assets/guides/input_validation/dolphin-game-list.png differ diff --git a/assets/guides/input_validation/verify-result.png b/assets/guides/input_validation/verify-result.png new file mode 100644 index 00000000..7e498825 Binary files /dev/null and b/assets/guides/input_validation/verify-result.png differ