changes to make PHP run better

This commit is contained in:
Mark McCaskey
2019-04-05 12:06:30 -07:00
parent 04d7cbcad3
commit 9af1206b62
3 changed files with 12 additions and 6 deletions

View File

@ -125,6 +125,8 @@ pub struct EmscriptenData<'a> {
pub dyn_call_vijiii: Option<Func<'a, (i32, i32, i32, i32, i32, i32, i32)>>,
pub dyn_call_vijj: Option<Func<'a, (i32, i32, i32, i32, i32, i32)>>,
pub dyn_call_viidii: Option<Func<'a, (i32, i32, i32, f64, i32, i32)>>,
// REVIEW: is this okay?
pub temp_ret_0: i32,
}
impl<'a> EmscriptenData<'a> {
@ -233,6 +235,7 @@ impl<'a> EmscriptenData<'a> {
dyn_call_vijiii,
dyn_call_vijj,
dyn_call_viidii,
temp_ret_0: 0,
}
}
}