Qt: Support setting for width and height

This commit is contained in:
Jeffrey Pfau 2014-11-02 03:38:00 -08:00
parent d744714ac5
commit 6d89c37886
2 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,7 @@ GBAApp::GBAApp(int& argc, char* argv[])
GBAConfigLoad(&config);
GBAConfigMapGeneralOpts(&config, PORT, &m_opts);
GBAConfigMapGraphicsOpts(&config, PORT, &m_opts);
ConfigurationDeinit(&config);

View File

@ -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() {