Search found 3 matches

by Mega Shocked
Tue Mar 26, 2024 3:18 pm
Forum: 3DS Development
Topic: Palette Swapping
Replies: 1
Views: 280

Palette Swapping

I'm curious if devkitpro offers the ability to do palette swapping? .t3s files are setup like this... --atlas -f rgba5551 -z auto And each .png image is indexed with the exact same colour order. Is it possible to do palette swaps? EX: I have 4 main characters but they each have a unique colour palet...
by Mega Shocked
Sat Mar 23, 2024 4:04 pm
Forum: 3DS Development
Topic: Crash on Exit
Replies: 2
Views: 457

Re: Crash on Exit

Thanks for getting back to me fincs! I tried another attempt... I changed the citro2d call to a pointer so now both C2D calls in my struct appear like this... (If figured it was wasteful to have 2 C2D_SpriteSheet's declared when I could just point to one of them) C2D_Sprite * object_sprite; //< 2D o...
by Mega Shocked
Thu Mar 21, 2024 5:07 pm
Forum: 3DS Development
Topic: Crash on Exit
Replies: 2
Views: 457

Crash on Exit

So far things are going pretty great using citro2d. The thing is when I press start to exit my program I always crash my 3DS system... Main.c has this in the body of the loop.... // Respond to user input u32 kDown = hidKeysDown(); if (kDown & KEY_START) { break; // break in order to return to hb...