Comment emphasis about the generated file

This commit is contained in:
Jean Pierre Cimalando 2021-02-22 00:55:33 +01:00
parent 4b6497272d
commit 69729b386b
2 changed files with 4 additions and 0 deletions

View file

@ -139,11 +139,13 @@ static std::vector<Stage> calculate_stages(int oversampling, double attenuation,
static void generate_cpp_prologue(int argc, char *argv[])
{
printf("//------------------------------------------------------------------------------\n");
printf("// This is generated by the Sfizz HIIR designer\n");
printf("// Using options:");
for (int i = 1; i < argc; ++i)
printf(" %s", argv[i]);
printf("\n");
printf("//------------------------------------------------------------------------------\n");
printf("\n");

View file

@ -4,8 +4,10 @@
// license. You should have receive a LICENSE.md file along with the code.
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
//------------------------------------------------------------------------------
// This is generated by the Sfizz HIIR designer
// Using options: -a 96 -t 0.01 -o 128
//------------------------------------------------------------------------------
#pragma once
#include "OversamplerHelpers.h"