aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorspicyjpeg <thatspicyjpeg@gmail.com>2022-10-19 14:15:28 +0200
committerspicyjpeg <thatspicyjpeg@gmail.com>2022-10-19 14:15:28 +0200
commit783014e53254fe17102a34c30120eeabf5227a47 (patch)
tree6c3e498295ddd293769b85e7b7cbecd80ce32be7 /examples
parente08a3d9366f8ca14a76b3dd569dac1fb9f569748 (diff)
downloadpsn00bsdk-783014e53254fe17102a34c30120eeabf5227a47.tar.gz
Clean up SDK debug logging, fix getTPage()
Diffstat (limited to 'examples')
-rw-r--r--examples/graphics/gte/main.c6
1 files changed, 3 insertions, 3 deletions
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 */