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

Function C_ArchiveAliases

source/common/console/c_dispatch.cpp:720–735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

718}
719
720void C_ArchiveAliases (FConfigFile *f)
721{
722 int bucket;
723 FConsoleCommand *alias;
724
725 for (bucket = 0; bucket < FConsoleCommand::HASH_SIZE; bucket++)
726 {
727 alias = Commands[bucket];
728 while (alias)
729 {
730 if (alias->IsAlias())
731 static_cast<FConsoleAlias *>(alias)->Archive (f);
732 alias = alias->m_Next;
733 }
734 }
735}
736
737void C_ClearAliases ()
738{

Callers 1

ArchiveGameDataMethod · 0.85

Calls 2

IsAliasMethod · 0.80
ArchiveMethod · 0.80

Tested by

no test coverage detected