diff options
author | Alan Hourihane <[email protected]> | 2010-01-04 17:41:49 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2010-01-04 17:41:49 +0000 |
commit | 1baaf111c8c42ed7f7218c46038f32eb51b9c6eb (patch) | |
tree | 5c493a87e0e3068b7706596a491efe21fce4469a /src/mesa/main/enums.c | |
parent | a3abb9d1cc4698e45e5d794919e8c27a3d7e5908 (diff) |
fix overflow
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 85197afcb32..73d6e6af3ec 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -3680,7 +3680,7 @@ static const enum_elt all_enums[1885] = { 37780, 0x00002802 }, /* GL_TEXTURE_WRAP_S */ { 37798, 0x00002803 }, /* GL_TEXTURE_WRAP_T */ { 37816, 0x0000911B }, /* GL_TIMEOUT_EXPIRED */ - { 37835, 0xFFFFFFFFFFFFFFFF }, /* GL_TIMEOUT_IGNORED */ + { 37835, 0xFFFFFFFF }, /* GL_TIMEOUT_IGNORED */ { 37854, 0x000088BF }, /* GL_TIME_ELAPSED_EXT */ { 37874, 0x00008648 }, /* GL_TRACK_MATRIX_NV */ { 37893, 0x00008649 }, /* GL_TRACK_MATRIX_TRANSFORM_NV */ |