1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-25 01:57:47 +01:00

add lanczos setting to config tool

This commit is contained in:
FunkyFr3sh 2023-08-23 17:04:15 +02:00
parent e2ed1930c3
commit 37ce86839e
2 changed files with 6 additions and 1 deletions

View File

@ -795,9 +795,13 @@ void __fastcall TConfigForm::FormCreate(TObject *Sender)
case 1: case 1:
ShaderD3DCbx->ItemIndex = 1; ShaderD3DCbx->ItemIndex = 1;
break; break;
case 2:
default: default:
ShaderD3DCbx->ItemIndex = 2; ShaderD3DCbx->ItemIndex = 2;
break; break;
case 3:
ShaderD3DCbx->ItemIndex = 3;
break;
} }
Maxfps = ini->ReadInteger("ddraw", "maxfps", -1); Maxfps = ini->ReadInteger("ddraw", "maxfps", -1);

View File

@ -3196,7 +3196,8 @@ object ConfigForm: TConfigForm
Items.Strings = ( Items.Strings = (
'Nearest neighbor' 'Nearest neighbor'
'Bilinear' 'Bilinear'
'Bicubic Catmull-Rom') 'Bicubic (Catmull-Rom)'
'Lanczos')
end end
object RendererCbx: TComboBox object RendererCbx: TComboBox
Left = 41 Left = 41