MCPcopy Create free account
hub / github.com/ZDoom/Raze / G_CheckSaveGameWads

Function G_CheckSaveGameWads

source/core/savegamehelp.cpp:313–329  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

311//=============================================================================
312
313static 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//

Callers 1

G_ValidateSavegameFunction · 0.85

Calls 2

CheckSingleFileFunction · 0.85
PrintfFunction · 0.85

Tested by

no test coverage detected