| 197 | } |
| 198 | |
| 199 | int FindGameFile(char *name) { |
| 200 | for (int i = 0; i < MAX_GAMEFILES; i++) { |
| 201 | if (Gamefiles[i].used && !stricmp(name, Gamefiles[i].name)) |
| 202 | return i; |
| 203 | } |
| 204 | return -1; |
| 205 | } |
| 206 | |
| 207 | void CFilePageDialog::OnCheckinFile() { |
| 208 | int r, n; |
no outgoing calls
no test coverage detected