diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-10 17:18:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 17:18:09 -0400 |
commit | 8b95e1964b174d664abcb5864549feea83cfebfe (patch) | |
tree | 60b7345fd6c36dc813d5de8556a54d9cabd42cd3 /src/graphics.c | |
parent | 078c341b2b86d743c202a3968dbb5dad106a2fac (diff) | |
parent | 4bf43311f0b2cf78cb69b71485fce61ed8c21786 (diff) |
Merge pull request #1121 from GriffinRichards/doc-roulette
Document roulette
Diffstat (limited to 'src/graphics.c')
-rw-r--r-- | src/graphics.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/graphics.c b/src/graphics.c index b774c5ad2..48323467d 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1227,13 +1227,14 @@ const u32 gCableCar_Gfx[] = INCBIN_U32("graphics/misc/cable_car.4bpp.lz"); const u32 gCableCarDoor_Gfx[] = INCBIN_U32("graphics/misc/cable_car_door.4bpp.lz"); const u32 gCableCarCord_Gfx[] = INCBIN_U32("graphics/misc/cable_car_cord.4bpp.lz"); -const u32 gRouletteMenuTiles[] = INCBIN_U32("graphics/roulette/window.4bpp.lz"); -const u32 gRouletteWheelTiles[] = INCBIN_U32("graphics/roulette/wheel.8bpp.lz"); +// Roulette +const u32 gRouletteMenu_Gfx[] = INCBIN_U32("graphics/roulette/window.4bpp.lz"); +const u32 gRouletteWheel_Gfx[] = INCBIN_U32("graphics/roulette/wheel.8bpp.lz"); const u32 gRouletteCenter_Gfx[] = INCBIN_U32("graphics/roulette/center.4bpp.lz"); -const u32 gRouletteHeadersTiles[] = INCBIN_U32("graphics/roulette/headers.4bpp.lz"); -const u32 gRouletteCreditTiles[] = INCBIN_U32("graphics/roulette/credit.4bpp.lz"); -const u32 gRouletteNumbersTiles[] = INCBIN_U32("graphics/roulette/numbers.4bpp.lz"); -const u32 gRouletteMultiplierTiles[] = INCBIN_U32("graphics/roulette/multiplier.4bpp.lz"); +const u32 gRouletteHeaders_Gfx[] = INCBIN_U32("graphics/roulette/headers.4bpp.lz"); +const u32 gRouletteCredit_Gfx[] = INCBIN_U32("graphics/roulette/credit.4bpp.lz"); +const u32 gRouletteNumbers_Gfx[] = INCBIN_U32("graphics/roulette/numbers.4bpp.lz"); +const u32 gRouletteMultiplier_Gfx[] = INCBIN_U32("graphics/roulette/multiplier.4bpp.lz"); #include "data/graphics/mail.h" |