You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/scr_mouse_gui_x.gml

5 lines
247 B

/// scr_mouse_gui_x(mouse_x)
if (os_type == os_windows || os_type == os_linux || os_type == os_macosx) {
return display_get_gui_width() * argument0 / window_get_width();
} else return display_get_gui_width() * argument0 / display_get_width();