diff options
| author | John "Lameguy" Wilbert Villamor <lameguy64@gmail.com> | 2022-11-03 10:14:22 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-03 10:14:22 +0800 |
| commit | 4139331d233b7a962e747c5564fa68a285f81cc8 (patch) | |
| tree | d4d3374afd5e36e8580cc424ab2c63ee9e7d357c /examples/graphics | |
| parent | e08a3d9366f8ca14a76b3dd569dac1fb9f569748 (diff) | |
| parent | 37d963f724113e45d15aa9b8ee86baa9c4362b8f (diff) | |
| download | psn00bsdk-4139331d233b7a962e747c5564fa68a285f81cc8.tar.gz | |
Merge pull request #60 from spicyjpeg/bugfix
Bugfixes, new serial port API and sound examples
Diffstat (limited to 'examples/graphics')
| -rw-r--r-- | examples/graphics/gte/main.c | 6 |
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 */ |
