Fix spacing

This commit is contained in:
Stefano Ceccherini 2014-09-20 19:21:23 +02:00
parent bd68cd0517
commit c0622eb3d3

View File

@ -29,14 +29,14 @@ const static char* kSynthFileName = "synth.sf2";
struct ReverbSettings {
double room, damp, width, level;
} gReverbSettings[] = {
} gReverbSettings[] = {
{0.0, 0.0, 0.0, 0.0}, // B_REVERB_NONE
{0.2, 0.0, 0.5, 0.9}, // B_REVERB_CLOSET
{0.5, 0.0, 0.9, 0.9}, // B_REVERB_GARAGE
{0.7, 0.25, 0.9, 0.95}, // B_REVERB_BALLROOM
{0.99, 0.3, 1.0, 1.0}, // B_REVERB_CAVERN
{1.03, 0.6, 1.0, 1.0} // B_REVERB_DUNGEON
};
};
BSoftSynth::BSoftSynth()