more debug or more bug ?

This commit is contained in:
2020-12-15 17:49:12 +01:00
parent 2187c1e062
commit 0def451bf4
7 changed files with 73 additions and 20 deletions

View File

@@ -213,6 +213,11 @@ return retval;
/* -------------------------------------------------------------- */
char * crap_name_from_number(int num)
{
switch (num) {
case 0: return "none";
case 8: return "ctr2x2";
case 13: return "fltr3x3";
}
return "???";
}