Skip to content

Commit

Permalink
Enabled tile mipmaps for all tile levels. Default = All
Browse files Browse the repository at this point in the history
  • Loading branch information
jarmonik committed Jan 11, 2024
1 parent c72ff75 commit 634a878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OVP/D3D9Client/D3D9Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void D3D9Config::Reset ()
FrameRate = 200.0;
EnableLimiter = 0;
CustomCamMode = 1;
TileMipmaps = 1;
TileMipmaps = 2;
TextureMips = 1;
LODBias = 0.0;
MeshRes = 1;
Expand Down
1 change: 1 addition & 0 deletions OVP/D3D9Client/VideoTab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,7 @@ void VideoTab::InitSetupDialog(HWND hWnd)
SendDlgItemMessage(hWnd, IDC_MIPMAPS, CB_RESETCONTENT, 0, 0);
SendDlgItemMessageA(hWnd, IDC_MIPMAPS, CB_ADDSTRING, 0, (LPARAM)"None");
SendDlgItemMessageA(hWnd, IDC_MIPMAPS, CB_ADDSTRING, 0, (LPARAM)"Low level only");
SendDlgItemMessageA(hWnd, IDC_MIPMAPS, CB_ADDSTRING, 0, (LPARAM)"All levels");
SendDlgItemMessage(hWnd, IDC_MIPMAPS, CB_SETCURSEL, 0, 0);

// ARCHIVE METHOD ------------------------------------------
Expand Down

0 comments on commit 634a878

Please sign in to comment.