mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
rsx: use range for vertex buffer attribute.
This commit is contained in:
parent
c24fba89e8
commit
42b518cf7e
10 changed files with 347 additions and 251 deletions
|
|
@ -213,8 +213,8 @@ SettingsDialog::SettingsDialog(wxWindow* parent)
|
|||
|
||||
std::vector<std::unique_ptr<cfg_adapter>> pads;
|
||||
|
||||
static const u32 width = 458;
|
||||
static const u32 height = 400;
|
||||
static const u32 width = 458 * 2;
|
||||
static const u32 height = 400 * 2;
|
||||
|
||||
// Settings panels
|
||||
wxNotebook* nb_config = new wxNotebook(this, wxID_ANY, wxPoint(6, 6), wxSize(width, height));
|
||||
|
|
@ -521,7 +521,7 @@ SettingsDialog::SettingsDialog(wxWindow* parent)
|
|||
SetSizerAndFit(s_subpanel_system, false);
|
||||
SetSizerAndFit(s_b_panel, false);
|
||||
|
||||
SetSize(width + 26, height + 80);
|
||||
SetSize(width + 26 * 2, height + 80 * 2);
|
||||
|
||||
if (ShowModal() == wxID_OK)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue