MCPcopy Create free account
hub / github.com/BespokeSynth/BespokeSynth / DoesModuleHaveMoreSaveData

Method DoesModuleHaveMoreSaveData

Source/ModuleContainer.cpp:732–740  ·  view source on GitHub ↗

static

Source from the content-addressed store, hash-verified

730
731//static
732bool ModuleContainer::DoesModuleHaveMoreSaveData(FileStreamIn& in)
733{
734 char test[GetModuleSeparatorLength() + 1];
735 in.Peek(test, GetModuleSeparatorLength());
736 test[GetModuleSeparatorLength()] = 0;
737 if (strcmp(GetModuleSeparator(), test) == 0)
738 return false;
739 return true;
740}

Callers

nothing calls this directly

Calls 1

PeekMethod · 0.80

Tested by

no test coverage detected