summaryrefslogtreecommitdiff
path: root/src/code/z_sample.c
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2020-07-16 21:37:53 -0400
committerGitHub <noreply@github.com>2020-07-16 21:37:53 -0400
commit24ab14f7482d48e94338a9dbf1a07abb15d3b77f (patch)
tree5262c8346a46f41b450a71725d06a3cec1dfdfb1 /src/code/z_sample.c
parentbc14f6d93e2463dfe81660013c591b3ddd6b3ab3 (diff)
Change Colors To Decimal (#260)
* fix colliderinit typo * convert as many colors i can find to decimal * fix GPACK_RGBA5551, merge fhgFire * fix remaining colors * remove unwanted file * alpha as 1
Diffstat (limited to 'src/code/z_sample.c')
-rw-r--r--src/code/z_sample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_sample.c b/src/code/z_sample.c
index bd6cbd555..6bd1e9520 100644
--- a/src/code/z_sample.c
+++ b/src/code/z_sample.c
@@ -36,7 +36,7 @@ void Sample_Draw(SampleContext* this) {
gDPSetCycleType(gfxCtx->polyOpa.p++, G_CYC_1CYCLE);
gDPSetRenderMode(gfxCtx->polyOpa.p++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2);
gDPSetCombineMode(gfxCtx->polyOpa.p++, G_CC_PRIMITIVE, G_CC_PRIMITIVE);
- gDPSetPrimColor(gfxCtx->polyOpa.p++, 0, 0, 0xFF, 0xFF, 0x00, 0x00);
+ gDPSetPrimColor(gfxCtx->polyOpa.p++, 0, 0, 255, 255, 0, 0);
Graph_CloseDisps(dispRefs, gfxCtx, "../z_sample.c", 111);
}