mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
vfmt: fix merged param warnings in sokol's particles example and vlib/x/net/udp.v
This commit is contained in:
parent
44753e62ab
commit
2f149e6984
4 changed files with 7 additions and 7 deletions
|
@ -58,7 +58,7 @@ pub fn (mut s System) reset() {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn (mut s System) explode(x, y f32) {
|
||||
pub fn (mut s System) explode(x f32, y f32) {
|
||||
mut reserve := 500
|
||||
center := vec2.Vec2{x, y}
|
||||
mut p := &Particle(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue