|
|
@ -34,9 +34,9 @@ class EmuWindow { |
|
|
public: |
|
|
public: |
|
|
/// Data structure to store emuwindow configuration |
|
|
/// Data structure to store emuwindow configuration |
|
|
struct WindowConfig { |
|
|
struct WindowConfig { |
|
|
bool fullscreen; |
|
|
|
|
|
int res_width; |
|
|
|
|
|
int res_height; |
|
|
|
|
|
|
|
|
bool fullscreen = false; |
|
|
|
|
|
int res_width = 0; |
|
|
|
|
|
int res_height = 0; |
|
|
std::pair<unsigned, unsigned> min_client_area_size; |
|
|
std::pair<unsigned, unsigned> min_client_area_size; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|