istereo
changeset 34:634c7f7c1f0f
the text blur distance was too much man
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Fri, 09 Sep 2011 00:31:54 +0300 |
parents | 33e9eedad390 |
children | 23e5d274b2a2 |
files | src/istereo.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/src/istereo.c Fri Sep 09 00:03:37 2011 +0300 1.2 +++ b/src/istereo.c Fri Sep 09 00:31:54 2011 +0300 1.3 @@ -161,7 +161,7 @@ 1.4 glDepthMask(0); 1.5 text_line = floor((text_speed * t) / text_period); 1.6 for(i=0; i<8; i++) { 1.7 - vec3_t tpos = calc_text_pos(t - (float)i * 0.015); 1.8 + vec3_t tpos = calc_text_pos(t - (float)i * 0.011); 1.9 draw_text(text_line, tpos, 1.5 / (float)i); 1.10 } 1.11 glDepthMask(1);