summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorEllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com>2021-07-15 05:33:20 +0100
committerGitHub <noreply@github.com>2021-07-15 00:33:20 -0400
commit66d065612893299bfb2553da7dd55e7de09249a1 (patch)
treec57352f5ffcd9b975a5fdbe38aa8cdfba20c9600 /src/code
parent0b6aa837d2f0930e9631c2fd9f85f13a6b70cfe6 (diff)
C file for Fishing, some changes to collider scripts, a few minor cleanups (#210)
* Improve match in EnFirefly_Draw * Vestigial fishing files, add enums * Improve scripts, add ColChkInfo one * Some minor actor cleanup (static etc) * C file for Fishing, remove some local vars from variables.h * Remove comma and format * Newline * Review suggestions
Diffstat (limited to 'src/code')
-rw-r--r--src/code/z_en_item00.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/z_en_item00.c b/src/code/z_en_item00.c
index 97b40002a..a6409b18d 100644
--- a/src/code/z_en_item00.c
+++ b/src/code/z_en_item00.c
@@ -320,10 +320,10 @@ void func_800A640C(EnItem00* this, GlobalContext* globalCtx) {
}
}
-Color_RGBA8 D_801ADF10 = { 0xFF, 0xFF, 0x7F, 0x00 };
-Color_RGBA8 D_801ADF14 = { 0xFF, 0xFF, 0xFF, 0x00 };
-Vec3f D_801ADF18 = { 0.0f, 0.1f, 0.0f };
-Vec3f D_801ADF24 = { 0.0f, 0.01f, 0.0f };
+static Color_RGBA8 D_801ADF10 = { 255, 255, 127, 0 };
+static Color_RGBA8 D_801ADF14 = { 255, 255, 255, 0 };
+static Vec3f D_801ADF18 = { 0.0f, 0.1f, 0.0f };
+static Vec3f D_801ADF24 = { 0.0f, 0.01f, 0.0f };
void func_800A6650(EnItem00* this, GlobalContext* globalCtx) {
u32 pad;