| 68 | } |
| 69 | |
| 70 | static bool ReadFloat(const uint8*& bufferPos, float& ret) |
| 71 | { |
| 72 | char line[MAX_LINE]; |
| 73 | ReadLine(bufferPos, line, true); |
| 74 | ret = static_cast<float>(atof(line)); |
| 75 | return true; |
| 76 | } |
| 77 | |
| 78 | static bool ReadLine(const uint8*& bufferPos, int32& ret) |
| 79 | { |
nothing calls this directly
no test coverage detected