mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Fix window_get_scroll proc not returning loaded values
This commit is contained in:
4
vendor/wasm/js/dom.odin
vendored
4
vendor/wasm/js/dom.odin
vendored
@@ -70,7 +70,7 @@ window_get_scroll :: proc "contextless" () -> (x, y: f64) {
|
||||
@(link_name="window_get_scroll")
|
||||
_window_get_scroll :: proc(scroll: ^[2]f64) ---
|
||||
}
|
||||
scroll := [2]f64{x, y}
|
||||
scroll: [2]f64
|
||||
_window_get_scroll(&scroll)
|
||||
return
|
||||
return scroll.x, scroll.y
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user