mirror of https://github.com/mgba-emu/mgba.git
Qt: Support setting for width and height
This commit is contained in:
parent
d744714ac5
commit
6d89c37886
|
@ -22,6 +22,7 @@ GBAApp::GBAApp(int& argc, char* argv[])
|
|||
GBAConfigLoad(&config);
|
||||
|
||||
GBAConfigMapGeneralOpts(&config, PORT, &m_opts);
|
||||
GBAConfigMapGraphicsOpts(&config, PORT, &m_opts);
|
||||
|
||||
ConfigurationDeinit(&config);
|
||||
|
||||
|
|
|
@ -126,6 +126,10 @@ void Window::setOptions(GBAOptions* opts) {
|
|||
if (opts->audioBuffers) {
|
||||
emit audioBufferSamplesChanged(opts->audioBuffers);
|
||||
}
|
||||
|
||||
if (opts->width && opts->height) {
|
||||
m_screenWidget->setSizeHint(QSize(opts->width, opts->height));
|
||||
}
|
||||
}
|
||||
|
||||
void Window::selectROM() {
|
||||
|
|
Loading…
Reference in New Issue