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

Function parseUndefTextureRange

source/core/defparser.cpp:481–488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479//===========================================================================
480
481static void parseUndefTextureRange(FScanner& sc, FScriptPosition& pos)
482{
483 int start, end;
484 if (!sc.GetNumber(start, true)) return;
485 if (!sc.GetNumber(end, true)) return;
486 if (ValidateTileRange("undeftexturerange", start, end, pos))
487 for (int i = start; i <= end; i++) tileRemoveReplacement(i);
488}
489
490//===========================================================================
491//

Callers

nothing calls this directly

Calls 3

ValidateTileRangeFunction · 0.85
tileRemoveReplacementFunction · 0.85
GetNumberMethod · 0.45

Tested by

no test coverage detected