/[svn]/libgig/trunk/src/tools/gig2stereo.cpp
ViewVC logotype

Diff of /libgig/trunk/src/tools/gig2stereo.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3114 by schoenebeck, Fri Nov 25 18:34:45 2016 UTC revision 3115 by schoenebeck, Sat Apr 15 20:17:05 2017 UTC
# Line 321  static bool convertFileToStereo(const st Line 321  static bool convertFileToStereo(const st
321                      OPTIONAL_SKIP_CHECK();                      OPTIONAL_SKIP_CHECK();
322                  }                  }
323                  if (pSampleL->LoopStart != pSampleR->LoopStart) {                  if (pSampleL->LoopStart != pSampleR->LoopStart) {
324                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop start! Skipping!\n";                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop start!";
325                      continue; // skip to convert this sample pair                      OPTIONAL_SKIP_CHECK();
326                  }                  }
327                  if (pSampleL->LoopEnd != pSampleR->LoopEnd) {                  if (pSampleL->LoopEnd != pSampleR->LoopEnd) {
328                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop end! Skipping!\n";                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop end!";
329                      continue; // skip to convert this sample pair                      OPTIONAL_SKIP_CHECK();
330                  }                  }
331                  if (pSampleL->LoopSize != pSampleR->LoopSize) {                  if (pSampleL->LoopSize != pSampleR->LoopSize) {
332                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop size! Skipping!\n";                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop size!";
333                      continue; // skip to convert this sample pair                      OPTIONAL_SKIP_CHECK();
334                  }                  }
335                  if (pSampleL->LoopPlayCount != pSampleR->LoopPlayCount) {                  if (pSampleL->LoopPlayCount != pSampleR->LoopPlayCount) {
336                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop play count!";                      cerr << "WARNING: Sample pair ['" << pSampleL->pInfo->Name << "', '" << pSampleR->pInfo->Name << "'] with different loop play count!";

Legend:
Removed from v.3114  
changed lines
  Added in v.3115

  ViewVC Help
Powered by ViewVC