| 805 | } |
| 806 | return -1; |
| 807 | } |
| 808 | |
| 809 | int NetworkPlayerInfo::FindIntegrityQuestion(IntegrityQuestionType type) const |
| 810 | { |
| 811 | for (int i = 0; i < integrityQuestions.Size(); i++) |
| 812 | { |
| 813 | const IntegrityQuestionInfo& qi = integrityQuestions[i]; |
| 814 | if (qi.type == type) |
| 815 | { |
| 816 | return i; |
| 817 | } |
| 818 | } |
nothing calls this directly
no test coverage detected