mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
D'oh!
This commit is contained in:
parent
748985b760
commit
783602e6a4
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ function zoom::increase {
|
|||
if (!$zoomed) {
|
||||
return
|
||||
}
|
||||
mult = `cap $min ($mult*$step) $max`
|
||||
mult = `clamp $min ($mult*$step) $max`
|
||||
zoom::adjust
|
||||
}
|
||||
|
||||
|
@ -99,7 +99,7 @@ function zoom::decrease {
|
|||
if (!$zoomed) {
|
||||
return
|
||||
}
|
||||
mult = `cap $min ($mult/$step) $max`
|
||||
mult = `clamp $min ($mult/$step) $max`
|
||||
zoom::adjust
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue