Files
TakaRikka 981cfe7283 almost all of dolphin matched (#2036)
* TRK full match

* remove trk asm

* ar done

* cleanup some dolphin headers

* more dolphin cleanup

* cleanup / GD fully matched

* almost all of GX fully matched

* GX / Mtx full matched

* most of OS done

* pad done

* most of VI

* remove asm

* forgot couple vec funcs

* couple JUtility matches
2024-01-20 02:22:19 +02:00

9 lines
340 B
C++

#include "dolphin/gf/GFLight.h"
#include "dolphin/gx.h"
/* 802CDE54-802CDE9C 2C8794 0048+00 0/0 0/0 1/1 .text GFSetChanAmbColor__F12_GXChannelID8_GXColor
*/
void GFSetChanAmbColor(_GXChannelID param_0, _GXColor param_1) {
GFFill((param_0 & 1) + 0x100a,
param_1.r << 0x18 | param_1.g << 0x10 | param_1.b << 8 | param_1.a);
}