From 49395b3ba1b05a049883cc40c8fae9902bb3c10a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 29 Jan 2022 18:48:05 +0900 Subject: [PATCH] [gamecode] Correct state's types for double time It takes int for the frame rather than float. --- libs/gamecode/opcodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gamecode/opcodes.py b/libs/gamecode/opcodes.py index 703baf183..d2da04ed7 100644 --- a/libs/gamecode/opcodes.py +++ b/libs/gamecode/opcodes.py @@ -394,7 +394,7 @@ stated_formats = { "opname": "state", "format": "{state_fmt[c]}", "widths": "1, 1, {c}", - "types": "ev_float, ev_func, {state_types[c]}", + "types": "ev_int, ev_func, {state_types[c]}", "args": { "state": ["dt", "dtt"], "state_fmt": ["%Ga, %Gb", "%Ga, %Gb, %Gc"],