/[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 235 by schoenebeck, Thu Sep 9 18:37:22 2004 UTC revision 240 by schoenebeck, Wed Sep 15 13:37:12 2004 UTC
# Line 233  void PrintRegions(gig::Instrument* instr Line 233  void PrintRegions(gig::Instrument* instr
233                      cout << "UNKNOWN - please report this !";                      cout << "UNKNOWN - please report this !";
234                      break;                      break;
235              }              }
236              cout << ", Bits=" << (uint) DimensionDef.bits << ", Zones=" << (uint) DimensionDef.zones << endl;              cout << ", Bits=" << (uint) DimensionDef.bits << ", Zones=" << (uint) DimensionDef.zones;
237                cout << ", SplitType=";
238                switch (DimensionDef.split_type) {
239                    case gig::split_type_normal:
240                        cout << "NORMAL" << endl;
241                        break;
242                    case gig::split_type_customvelocity:
243                        cout << "CUSTOMVELOCITY" << endl;
244                        break;
245                    case gig::split_type_bit:
246                        cout << "BIT" << endl;
247                        break;
248                    default:
249                        cout << "UNKNOWN" << endl;
250                }
251          }          }
252    
253          PrintDimensionRegions(pRegion);          PrintDimensionRegions(pRegion);

Legend:
Removed from v.235  
changed lines
  Added in v.240

  ViewVC Help
Powered by ViewVC