1--- 2title: Video Options 3weight: 6 4chapter: false 5--- 6 7## General Options ## 8 9<div class="imgBox"><div> 10 <img src="/images/VideoOptions_General.png" /> 11 <span>General Options</span> 12</div></div> 13 14**Scale**: The scale determines the emulator window's size - use integer factors (e.g: 2x, 3x, 4x) for best results. 15 16**Aspect Ratio**: The NES' internal aspect ratio is almost square (`Default (No Stretching)`), but it used to be displayed on CRT TVs that had a rectangular picture. To simulate a CRT TV, you can use the `Auto` option - it will switch between NTSC and PAL aspect ratios depending on the game you are playing. Using anything other than the `Default (No Stretching)` option may cause pixels to have irregular sizes. You can reduce this effect by using a combination of video filters and the bilinear filtering option. 17 18**Enable integer FPS mode**: Under normal conditions, the NTSC NES runs at 60.1 fps. When playing a 60hz LCD, this causes a lot of dropped frames. This option slows down the emulation by a tiny amount to produce 60 frames per second instead, which reduces the number of dropped frames. 19 20**Enable vertical sync**: Turns on vertical sync -- can help prevent screen tearing on some hardware configurations. 21 22**Use exclusive fullscreen mode**: Turns on exclusive fullscreen mode. This may be useful if you are experiencing screen tearing issues in regular fullscreen despite vertical sync being turned on. 23 24**Requested Refresh Rate**: This option is shown only when exclusive fullsceen mode is enabled. It allows you to select your preferred refresh rate when running in exclusive fullscreen mode. 25 26**Use integer scale values when entering fullscreen mode**: By default, fullscreen mode fills the entire screen. However, this can cause non-integer scaling values to be used -- for example, in 1080p resolution, the scale becomes 4.5x. Since this can cause irregularly shaped pixels, you can use this option to use the nearest integer scale value instead (e.g 4x in this example). 27 28**Use HDNes HD packs**: Enables the use of [HD packs](/hdpacks.html). 29 30**Show FPS**: Displays an FPS counter on the screen. The first number is the number of frames emulated, the second number is the number of frames displayed on the screen. These values are usually identical, except when vertical sync is enabled. 31 32## Picture ## 33 34<div class="imgBox"><div> 35 <img src="/images/VideoOptions_Picture.png" /> 36 <span>Picture Options</span> 37</div></div> 38 39**Filter**: Allows you to select a video filter. Selecting NTSC filters will cause additional configuration options to appear below. 40 41### Common Options ### 42 43The `Brightness`, `Contrast`, `Hue`, `Saturation`, `Scanline` settings are common to all filters and can even be used without a filter. 44 45**Use bilinear interpolation when scaling**: When enabled, bilinear interpolation is used when stretching (due to scale or aspect ratio). When disabled, nearest neighbor scaling is used. An easy way to get a slightly-softened screen, for example, is to use the `Prescale` filters (which use nearest neighbor scaling), use a bigger scale and enable bilinear filtering. For example, try this configuration: 46```text 47 Filter: Prescale 3x 48 Scale: 4x 49 Use bilinear interpolation when scaling: Enabled 50``` 51 52**Scanlines**: Simulates the scanlines on a CRT TV - the higher the value, the deeper the scanlines appear on the screen. 53 54### NTSC Filter Options ### 55 56There are 2 separate NTSC filters implemented in Mesen. The `NTSC` filter is blargg's implementation - this filter is very fast, and available in various other emulators. The `NTSC (bisqwit)` filter is an implementation of bisqwit's NTSC filter -- it is slower and produces a different output. 57 58The 2 filters have a different set of options: 59 60**NTSC (blargg)**: `Artifacts`, `Bleed`, `Fringing`, `Gamma`, `Resolution`, `Sharpness` 61**NTSC (bisqwit)**: `Y Filter (Horizontal Blur)`, `I Filter (Horizontal Blur)`, `Q Filter (Horizontal Bleed)` 62 63Feel free to experiment with the settings and choose what you feel looks best. 64 65## Overscan ## 66 67<div class="imgBox"><div> 68 <img src="/images/VideoOptions_Overscan.png" /> 69 <span>Overscan Options</span> 70</div></div> 71 72The overscan settings allow you to cut out pixels on any edge of the screen. On a CRT TV, a few pixels on each side of the screen was usually invisible to the player. Because of this, games often have glitches or incorrect palette colors on the edges of the screen -- this is normal and caused by the game itself. Setting a value of 8 or so on each side of the overscan configuration will usually hide most glitches. 73 74It is possible to configure the overscan settings on a per-game basis in the *Game-Specific* tab. All games without specific settings will automatically use the overscan parameters shown in the *Global* tab. 75 76## Palette ## 77 78<div class="imgBox"><div> 79 <img src="/images/VideoOptions_Palette.png" /> 80 <span>Palette Options</span> 81</div></div> 82 83This tab allows you to customize the palette used by all games. 84 85{{% notice tip %}} 86Click on any color in the palette to manually change its color. 87{{% /notice %}} 88 89**Load Preset Palette**: Mesen comes with a number of built-in palette options - you can select them from here. 90 91**Load Palette File**: Use this to load a .pal file into the emulator. Mesen supports both 64-color (192 bytes) and 512-color (1536 bytes) palette files. The 512-color palette files can be used to control the colors used when the PPU's R/G/B emphasis bits are turned on. 92 93**Export Palette**: Use this to export your current palette into a .pal file. 94 95**Use this palette for VS System games**: By default, VS System games have their own predefined RGB palettes and don't use the palette defined here. When enabled, this option forces VS System games to ignore their default palette and use this one instead. 96 97## Advanced Options ## 98 99<div class="imgBox"><div> 100 <img src="/images/VideoOptions_Advanced.png" /> 101 <span>Advanced Options</span> 102</div></div> 103 104{{% notice warning %}} 105These options should not be used if you are looking for accurate emulation. 106{{% /notice %}} 107 108**Remove sprite limit**: The NES can normally only draw up to 8 sprites per line -- this limitation is indirectly responsible for *some* of the flickering seen in games at times. When this option is enabled, the limit is disabled, allowing up to 64 sprites to be drawn on the same line. 109 110**Automatically re-enable sprite limit as needed to prevent graphical glitches when possible**: Some games rely on the sprite limit to hide objects from view. These games will have graphical glitches when the `Remove sprite limit` option is enabled. By enabling this option, Mesen will try to detect when games are attempting to hit the sprite limit on purpose and temporarely re-enable the limit in these specific cases. This option is not perfect and may not work in certain games, but it helps reduce the potential negative impacts of the `Remove sprite limit` option. 111 112**Disable background**: Disables rendering of the background layer. 113 114**Disable sprite**: Disables rendering of all sprites. 115 116**Force background display in first column**: The NES has a flag that prevents the background from rendering in the first 8 pixels on the left of the screen. When enabled, this option forces the background to be rendered in the first 8 pixels, no matter what the flag's value is. 117 118**Force sprite display in first column**: The NES has a flag that prevents sprites from rendering in the first 8 pixels on the left of the screen. When enabled, this option forces the sprites to be rendered in the first 8 pixels, no matter what the flag's value is. 119 120**Screen Rotation**: Rotates the display by the specified angle. This is useful to play games (generally homebrew games) designed for a vertical display. 121