diff --git a/README.md b/README.md
index 2cd0bfb..0b30160 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,9 @@
Gecko codes for Super Mario Sunshine made by sup39.
## Prerequisite for compiling the codes
-- Python
+- Python >= 3.8
- [devkitPro](https://github.com/devkitPro/installer/releases)
-- [supSMSGecko](https://github.com/sup39/supSMSGecko)
+- [supSMSGecko](https://github.com/sup39/supSMSGecko) >= 0.1.0a5
+ ```
+ pip install -U "supSMSGecko>=0.1.0a5"
+ ```
diff --git a/codes/FastForward/make.py b/codes/FastForward/make.py
index 7b326e4..06ca89a 100644
--- a/codes/FastForward/make.py
+++ b/codes/FastForward/make.py
@@ -2,7 +2,7 @@ from supSMSGecko import make_xml, symbols, Button as B
def main(g, ver):
S = symbols[ver]
- addr_inst = 0x26 + S['TMarDirector::direct']
+ addr_inst = 0x26 + S['TMarDirector_direct']
addr_input = S['mPadStatus']
# code
g.write16(addr_inst, 600)
diff --git a/codes/InstantRestart/@code.xml b/codes/InstantRestart/@code.xml
index a5ed3c7..fdbbcff 100644
--- a/codes/InstantRestart/@code.xml
+++ b/codes/InstantRestart/@code.xml
@@ -7,28 +7,28 @@
0.2.0Apr 28, 2022
- When you pressed the buttons configured in [#Button Config](#config) simultaneously,
- you can restart the current area without selecting "Exit Area" in pause menu.
- Note that the restart function behaves differently than pressing Y or Z with "Level Select".
- This code only supports restarting 1 area only.
- For example, you can restart outside a secret stage or inside a secret stage individually,
- but you can NOT restart a combination of outside+inside a secret stage.
+ When you pressed the buttons configured in [#Button Config](#config) simultaneously,
+ you can restart the current area without selecting "Exit Area" in pause menu.
+ Note that the restart function behaves differently than pressing Y or Z with "Level Select".
+ This code only supports restarting 1 area only.
+ For example, you can restart outside a secret stage or inside a secret stage individually,
+ but you can NOT restart a combination of outside+inside a secret stage.
- ::: warning
- You can NOT restart after destroying the last platform in Bowser fight at the moment.
- :::
+ ::: warning
+ You can NOT restart after destroying the last platform in Bowser fight at the moment.
+ :::
- [#ボタン設定](#config)で設定したボタンを同時に押すと、ポーズメニューから「コースから出る」を選択せずに所在のエリアをやり直すことができます。ただし、Level SelectのYとZのやり直し機能と異なり、エリアごとのやり直ししかできないので注意してください。例えば、ヒミツ外部のみ、ヒミツ内部のみといった一つのエリアのやり直しはできますが、ヒミツ外部+ヒミツ内部といった組み合わせのやり直しはできません。
+ [#ボタン設定](#config)で設定したボタンを同時に押すと、ポーズメニューから「コースから出る」を選択せずに所在のエリアをやり直すことができます。ただし、Level SelectのYとZのやり直し機能と異なり、エリアごとのやり直ししかできないので注意してください。例えば、ヒミツ外部のみ、ヒミツ内部のみといった一つのエリアのやり直しはできますが、ヒミツ外部+ヒミツ内部といった組み合わせのやり直しはできません。
- ::: warning
- 現時点ではクッパ戦で最後の足場を破壊するとやり直しできません。
- :::
+ ::: warning
+ 現時点ではクッパ戦で最後の足場を破壊するとやり直しできません。
+ :::