Re-add filter setting to PNG metadata.

This commit is contained in:
Christian Speckner 2019-12-17 16:57:13 +01:00
parent 5977c8561a
commit 032f0b0b7c
2 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,7 @@
"iomanip": "cpp", "iomanip": "cpp",
"__cxx_version": "cpp", "__cxx_version": "cpp",
"string": "cpp", "string": "cpp",
"type_traits": "cpp" "type_traits": "cpp",
"ostream": "cpp"
} }
} }

View File

@ -302,6 +302,9 @@ string TIASurface::effectsInfo() const
<< attr.blendalpha; << attr.blendalpha;
break; break;
} }
buf << ", filter=" << myOSystem.settings().getString("tia.filter");
return buf.str(); return buf.str();
} }