mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
20 lines
456 B
C++
Executable file
20 lines
456 B
C++
Executable file
struct AdvancedSettings : SettingsLayout {
|
|
Label title;
|
|
Label driverLabel;
|
|
HorizontalLayout driverLayout;
|
|
Label videoLabel;
|
|
ComboBox videoDriver;
|
|
Label audioLabel;
|
|
ComboBox audioDriver;
|
|
Label inputLabel;
|
|
ComboBox inputDriver;
|
|
Label focusPolicyLabel;
|
|
HorizontalLayout focusPolicyLayout;
|
|
RadioBox focusPolicy[3];
|
|
Widget spacer;
|
|
Label aboutLabel;
|
|
|
|
AdvancedSettings();
|
|
};
|
|
|
|
extern AdvancedSettings *advancedSettings;
|