--- libgig/trunk/src/gigdump.cpp 2005/02/22 14:09:26 401 +++ libgig/trunk/src/gigdump.cpp 2005/02/22 19:18:16 402 @@ -144,10 +144,11 @@ case gig::dimension_samplechannel: // If used sample has more than one channel (thus is not mono). cout << "SAMPLECHANNEL"; break; - case gig::dimension_layer: // For layering of up to 8 instruments (and eventually crossfading of 2 or 4 layers). + case gig::dimension_layer: { // For layering of up to 8 instruments (and eventually crossfading of 2 or 4 layers). gig::crossfade_t crossfade = pRegion->pDimensionRegions[iDimension]->Crossfade; cout << "LAYER (Crossfade in_start=" << (int) crossfade.in_start << ",in_end=" << (int) crossfade.in_end << ",out_start=" << (int) crossfade.out_start << ",out_end=" << (int) crossfade.out_end << ")"; break; + } case gig::dimension_velocity: // Key Velocity (this is the only dimension where the ranges can exactly be defined). cout << "VELOCITY"; break;