| 1035 | } |
| 1036 | |
| 1037 | void CFamiTrackerDocIO::LoadComments(CFamiTrackerModule &modfile, int ver) { |
| 1038 | bool disp = file_.GetBlockInt() == 1; |
| 1039 | modfile.SetComment(file_.ReadString(), disp); |
| 1040 | } |
| 1041 | |
| 1042 | void CFamiTrackerDocIO::SaveComments(const CFamiTrackerModule &modfile, int ver) { |
| 1043 | if (auto str = modfile.GetComment(); !str.empty()) { |
nothing calls this directly
no test coverage detected