Fix antialiasing option
This commit is contained in:
parent
36f49706e0
commit
9e26f41a3b
2 changed files with 21 additions and 4 deletions
|
@ -189,8 +189,8 @@ void EmuThread::run()
|
|||
coreParameter.enableDebugging = true;
|
||||
coreParameter.printfEmuLog = false;
|
||||
coreParameter.headLess = false;
|
||||
coreParameter.renderWidth = 480 * g_Config.iWindowZoom;
|
||||
coreParameter.renderHeight = 272 * g_Config.iWindowZoom;
|
||||
coreParameter.renderWidth = (480 * g_Config.iWindowZoom) * (g_Config.SSAntiAliasing + 1);
|
||||
coreParameter.renderHeight = (272 * g_Config.iWindowZoom) * (g_Config.SSAntiAliasing + 1);
|
||||
coreParameter.outputWidth = dp_xres;
|
||||
coreParameter.outputHeight = dp_yres;
|
||||
coreParameter.pixelWidth = pixel_xres;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue