mirror of https://github.com/stella-emu/stella.git
Re-add filter setting to PNG metadata.
This commit is contained in:
parent
5977c8561a
commit
032f0b0b7c
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue