static
| 730 | |
| 731 | //static |
| 732 | bool 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 | } |