summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2022-01-17 16:04:02 -0500
committerGriffinR <griffin.g.richards@gmail.com>2022-01-17 16:04:02 -0500
commit177863da4728237c8fef4e6b69417d91d1b003cd (patch)
treeff059c3b452d6f1a86362c0cfd593a26c7739396 /src
parent225147a94f8baf30c6e7db7084c5b8663d52ca3c (diff)
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/pokemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon.c b/src/pokemon.c
index e5d321f5a..bc83bc588 100644
--- a/src/pokemon.c
+++ b/src/pokemon.c
@@ -5670,8 +5670,8 @@ u16 SpeciesToCryId(u16 species)
means each spot can start at any position -8 to +7 off of its base coordinates (256 possibilities).
The macro then loops over the 16x16 spot image. For each bit in the spot's binary image, if
- if the bit is set then it's part of the spot; try to draw it. A pixel is drawn on Spinda
- if the pixel on Spinda satisfies the following formula: (colorIndex - 1 <= 2). The -1 excludes
+ the bit is set then it's part of the spot; try to draw it. A pixel is drawn on Spinda if the
+ pixel on Spinda satisfies the following formula: (colorIndex - 1 <= 2). The -1 excludes
transparent pixels, as these are index 0. Therefore only colors 1, 2, or 3 on Spinda will
allow a spot to be drawn. These color indexes are Spinda's light brown body colors. To create
the spot it adds 4 to the color index, so Spinda's spots will be colors 5, 6, and 7.