| 852 | } |
| 853 | |
| 854 | void CInifile::w_fvector2(LPCSTR S, LPCSTR L, const Fvector2& V) |
| 855 | { |
| 856 | string128 temp; |
| 857 | sprintf_s(temp, "%g,%g", V.x, V.y); |
| 858 | w_string(S, L, temp); |
| 859 | } |
| 860 | |
| 861 | void CInifile::w_fvector3(LPCSTR S, LPCSTR L, const Fvector3& V) |
| 862 | { |
no test coverage detected