| 59 | } |
| 60 | |
| 61 | Color GetColor(const ParamEntry& entry) |
| 62 | { |
| 63 | if (entry.GetSize() != 4) |
| 64 | { |
| 65 | return HWhite; |
| 66 | } |
| 67 | return Color(entry[0].GetFloat(), entry[1].GetFloat(), entry[2].GetFloat(), entry[3].GetFloat()); |
| 68 | } |
| 69 | |
| 70 | bool GetValue(SoundPars& pars, const ParamEntry& entry) |
| 71 | { |
no test coverage detected