summaryrefslogtreecommitdiff
path: root/libs/dolphin/src/gf/GFLight.cpp
blob: 612c005ab36d133c657de4c479c01c920b5f2db5 (plain)
1
2
3
4
5
6
#include <dolphin/gf.h>
#include <dolphin/gd.h>

void GFSetChanAmbColor(GXChannelID chan, GXColor color) {
    GFWriteXFCmd((chan & 1) + XF_REG_AMBIENT0_ID, color.r << 0x18 | color.g << 0x10 | color.b << 8 | color.a);
}