| 126 | } |
| 127 | |
| 128 | void ScriptFile_WriteFloat_Generic(asIScriptGeneric *gen) |
| 129 | { |
| 130 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 131 | float val = *(float*)gen->GetAddressOfArg(0); |
| 132 | *(int*)gen->GetAddressOfReturnLocation() = file->WriteFloat(val); |
| 133 | } |
| 134 | |
| 135 | void ScriptFile_WriteDouble_Generic(asIScriptGeneric *gen) |
| 136 | { |
nothing calls this directly
no test coverage detected