summaryrefslogtreecommitdiff
path: root/src/confetti_util.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-11-04 12:11:31 -0400
committerGitHub <noreply@github.com>2021-11-04 12:11:31 -0400
commitbe7d0bd3b02727affddb422bdd868f2d219fe181 (patch)
tree2a888fe548d140e37456f6916075cc963fb51cee /src/confetti_util.c
parent17b657d83a29919253675b06c12a9ea5471385b2 (diff)
parent7940f121f66bb0ebe0932bc642c3d9b4015f79a7 (diff)
Merge branch 'master' into doc-menu
Diffstat (limited to 'src/confetti_util.c')
-rw-r--r--src/confetti_util.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/confetti_util.c b/src/confetti_util.c
index bcf19f705..9ede3088a 100644
--- a/src/confetti_util.c
+++ b/src/confetti_util.c
@@ -10,43 +10,6 @@ static EWRAM_DATA struct
struct ConfettiUtil *array;
} *sWork = NULL;
-static void sub_81520A8(void *dest, u16 value, u8 left, u8 top, u8 width, u8 height) // Unused.
-{
- u8 i;
- u8 j;
- u8 x;
- u8 y;
-
- for (i = 0, y = top; i < height; i++)
- {
- for (x = left, j = 0; j < width; j++)
- {
- *(u16 *)((dest) + (y * 64 + x * 2)) = value;
- x = (x + 1) % 32;
- }
- y = (y + 1) % 32;
- }
-}
-
-static void sub_8152134(void *dest, const u16 *src, u8 left, u8 top, u8 width, u8 height) // Unused.
-{
- u8 i;
- u8 j;
- u8 x;
- u8 y;
- const u16 *_src;
-
- for (i = 0, _src = src, y = top; i < height; i++)
- {
- for (x = left, j = 0; j < width; j++)
- {
- *(u16 *)((dest) + (y * 64 + x * 2)) = *(_src++);
- x = (x + 1) % 32;
- }
- y = (y + 1) % 32;
- }
-}
-
bool32 ConfettiUtil_Init(u8 count)
{
u8 i = 0;