mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-08 07:48:03 +02:00
[script] Typo in the MathMax function
This commit is contained in:
parent
2b62c964bc
commit
74388bca11
1 changed files with 2 additions and 2 deletions
|
|
@ -8,8 +8,8 @@ fun MathMin (value_a, value_b){
|
|||
return value_b;
|
||||
}
|
||||
|
||||
fun MathMax (value, max){
|
||||
if (value_a > value_a) return value_a;
|
||||
fun MathMax (value_a, value_b){
|
||||
if (value_a > value_b) return value_a;
|
||||
return value_b;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue