mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 19:01:06 +00:00
Fix a double constant issue
There will be more of these :/
This commit is contained in:
parent
7e09a94469
commit
7e7e0526dd
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
source = s.origin + '0 0 16';
|
||||
|
||||
traceline (source, source + v_forward * 64, NO, s);
|
||||
if (trace_fraction == 1.0)
|
||||
if (trace_fraction == 1.0f)
|
||||
return;
|
||||
|
||||
org = trace_endpos - v_forward * 4;
|
||||
|
|
Loading…
Reference in a new issue