pmd-sky/src/main_0200BD2C.c
AnonymousRandomPerson 5868c3c461 Decomped GetFadeStatus
Decomped by @JesusArcasCarrera
2026-04-26 23:18:03 -04:00

12 lines
278 B
C

#include "main_0200BD2C.h"
s32 GetFadeStatus(struct screen_fade *fstruct)
{
s16 target_delta_brightness = fstruct->target_delta_brightness;
if (target_delta_brightness == -256)
return 1;
if (target_delta_brightness == 256)
return 2;
return 0;
}