| 311 | //============================================================================= |
| 312 | |
| 313 | static bool G_CheckSaveGameWads (const char *gamegrp, const char *mapgrp, bool printwarn) |
| 314 | { |
| 315 | bool printRequires = false; |
| 316 | CheckSingleFile (gamegrp, printRequires, printwarn); |
| 317 | CheckSingleFile (mapgrp, printRequires, printwarn); |
| 318 | |
| 319 | if (printRequires) |
| 320 | { |
| 321 | if (printwarn) |
| 322 | { |
| 323 | Printf ("\n"); |
| 324 | } |
| 325 | return false; |
| 326 | } |
| 327 | |
| 328 | return true; |
| 329 | } |
| 330 | |
| 331 | //============================================================================= |
| 332 | // |
no test coverage detected