From 783014e53254fe17102a34c30120eeabf5227a47 Mon Sep 17 00:00:00 2001 From: spicyjpeg Date: Wed, 19 Oct 2022 14:15:28 +0200 Subject: Clean up SDK debug logging, fix getTPage() --- examples/graphics/gte/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/graphics') diff --git a/examples/graphics/gte/main.c b/examples/graphics/gte/main.c index 6907c84..3c85d84 100644 --- a/examples/graphics/gte/main.c +++ b/examples/graphics/gte/main.c @@ -100,9 +100,9 @@ INDEX cube_indices[] = { /* source color when using gte_nccs(). 4096 is 1.0 in this matrix */ /* A column of zeroes disables the light source. */ MATRIX color_mtx = { - ONE / 2, 0, 0, /* Red */ - ONE / 2, 0, 0, /* Green */ - ONE / 2, 0, 0 /* Blue */ + ONE * 3/4, 0, 0, /* Red */ + ONE * 3/4, 0, 0, /* Green */ + ONE * 3/4, 0, 0 /* Blue */ }; /* Light matrix */ -- cgit v1.2.3