Explorar el Código

fixed int64 cast / dynget (#10828)

Nicolas Cannasse hace 2 años
padre
commit
b2f0e1bc4f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/generators/hl2c.ml

+ 1 - 1
src/generators/hl2c.ml

@@ -576,7 +576,7 @@ let generate_function ctx f =
 	in
 
 	let type_value_opt t =
-		match t with HF32 | HF64 -> "" | _ -> "," ^ type_value t
+		match t with HF32 | HF64 | HI64 -> "" | _ -> "," ^ type_value t
 	in
 
 	let dyn_call r f pl =