/[svn]/libgig/trunk/src/gigdump.cpp
ViewVC logotype

Diff of /libgig/trunk/src/gigdump.cpp

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

revision 518 by schoenebeck, Sun May 8 16:19:34 2005 UTC revision 858 by persson, Sat May 6 11:29:29 2006 UTC
# Line 257  void PrintRegions(gig::Instrument* instr Line 257  void PrintRegions(gig::Instrument* instr
257                  case gig::split_type_normal:                  case gig::split_type_normal:
258                      cout << "NORMAL" << endl;                      cout << "NORMAL" << endl;
259                      break;                      break;
                 case gig::split_type_customvelocity:  
                     cout << "CUSTOMVELOCITY" << endl;  
                     break;  
260                  case gig::split_type_bit:                  case gig::split_type_bit:
261                      cout << "BIT" << endl;                      cout << "BIT" << endl;
262                      break;                      break;
# Line 277  void PrintRegions(gig::Instrument* instr Line 274  void PrintRegions(gig::Instrument* instr
274  void PrintDimensionRegions(gig::Region* rgn) {  void PrintDimensionRegions(gig::Region* rgn) {
275      int dimensionRegions = 0;      int dimensionRegions = 0;
276      gig::DimensionRegion* pDimensionRegion;      gig::DimensionRegion* pDimensionRegion;
277      while (dimensionRegions < 32) {      while (dimensionRegions < rgn->DimensionRegions) {
278          pDimensionRegion = rgn->pDimensionRegions[dimensionRegions];          pDimensionRegion = rgn->pDimensionRegions[dimensionRegions];
279          if (!pDimensionRegion) break;          if (!pDimensionRegion) break;
280    
# Line 324  void PrintDimensionRegions(gig::Region* Line 321  void PrintDimensionRegions(gig::Region*
321  }  }
322    
323  string Revision() {  string Revision() {
324      string s = "$Revision: 1.16 $";      string s = "$Revision: 1.18 $";
325      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
326  }  }
327    

Legend:
Removed from v.518  
changed lines
  Added in v.858

  ViewVC Help
Powered by ViewVC