diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-01-20 15:24:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-20 15:24:20 -0800 |
commit | 185846f20840c03ba1616c4d0c6eca949147512c (patch) | |
tree | 2ee03f3c11f552976589d1ac0b0de474bf78fb96 /src/field/scrcmd.c | |
parent | e2a0522780d7124a392bf028c9c1f50c4213b460 (diff) | |
parent | 003ed9293b2c51f0481ed31f0e0459cbecbf757e (diff) |
Merge pull request #544 from huderlem/weather
Further document weather
Diffstat (limited to 'src/field/scrcmd.c')
-rw-r--r-- | src/field/scrcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/field/scrcmd.c b/src/field/scrcmd.c index 36edbe472..bc5cd0b1d 100644 --- a/src/field/scrcmd.c +++ b/src/field/scrcmd.c @@ -626,7 +626,7 @@ bool8 IsPaletteNotActive(void) bool8 ScrCmd_fadescreen(struct ScriptContext *ctx) { - fade_screen(ScriptReadByte(ctx), 0); + FadeScreen(ScriptReadByte(ctx), 0); SetupNativeScript(ctx, IsPaletteNotActive); return TRUE; } @@ -636,7 +636,7 @@ bool8 ScrCmd_fadescreenspeed(struct ScriptContext *ctx) u8 duration = ScriptReadByte(ctx); u8 delay = ScriptReadByte(ctx); - fade_screen(duration, delay); + FadeScreen(duration, delay); SetupNativeScript(ctx, IsPaletteNotActive); return TRUE; } |