Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.
/ Input Public archive

Commit 7885a70

Browse files
committed
Merge branch 'dev'
2 parents 09075d1 + 2bf60de commit 7885a70

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

β€Žinput.yypβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žoptions/main/options_main.yyβ€Ž

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žscripts/input_check_press_most_recent/input_check_press_most_recent.gmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
function input_check_press_most_recent()
55
{
6-
var _verb_names = argument[0];
6+
var _verb_names = ((argument_count > 0) && !is_array(argument[0]))? argument[0] : all;
77
var _player_index = ((argument_count > 1) && (argument[1] != undefined))? argument[1] : 0;
88

99
if (_player_index < 0)

β€Žscripts/input_tick/input_tick.gmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ function __input_error()
835835

836836
#region Internal macros
837837

838-
#macro __INPUT_VERSION "3.0.0.pre002"
838+
#macro __INPUT_VERSION "3.0.0.pre003"
839839
#macro __INPUT_DATE "2020-08-14"
840840

841841
enum INPUT_SOURCE

0 commit comments

Comments
Β (0)