@tmustier/pi-nes 0.2.26 → 0.2.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions/nes/index.ts +4 -5
- package/package.json +1 -1
package/extensions/nes/index.ts
CHANGED
|
@@ -172,13 +172,12 @@ async function configureWithWizard(
|
|
|
172
172
|
const imageQuality = isHighQuality ? "high" : "balanced";
|
|
173
173
|
|
|
174
174
|
const filterOptions: Array<{ label: string; value: VideoFilter }> = [
|
|
175
|
-
{ label: "
|
|
176
|
-
{ label: "
|
|
177
|
-
{ label: "
|
|
178
|
-
{ label: "NTSC RGB — subtle blur", value: "ntsc-rgb" },
|
|
175
|
+
{ label: "Sharp (default) — pixel-perfect, no filtering", value: "off" },
|
|
176
|
+
{ label: "CRT Soft — subtle retro look", value: "ntsc-rgb" },
|
|
177
|
+
{ label: "CRT Classic — authentic scanlines + color bleed", value: "ntsc-composite" },
|
|
179
178
|
];
|
|
180
179
|
const filterChoice = await ctx.ui.select(
|
|
181
|
-
"
|
|
180
|
+
"Display style",
|
|
182
181
|
filterOptions.map((option) => option.label),
|
|
183
182
|
);
|
|
184
183
|
if (!filterChoice) {
|