summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/emu_window.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index 52c870036..4cb94fed1 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -24,6 +24,8 @@
24 * - EmuWindow may expose some of its state as read-only to the emulation core, however care 24 * - EmuWindow may expose some of its state as read-only to the emulation core, however care
25 * should be taken to make sure the provided information is self-consistent. This requires 25 * should be taken to make sure the provided information is self-consistent. This requires
26 * some sort of synchronization (most of this is still a TODO). 26 * some sort of synchronization (most of this is still a TODO).
27 * - DO NOT TREAT THIS CLASS AS A GUI TOOLKIT ABSTRACTION LAYER. That's not what it is. Please
28 * re-read the upper points again and think about it if you don't see this.
27 */ 29 */
28class EmuWindow 30class EmuWindow
29{ 31{
@@ -92,8 +94,8 @@ public:
92protected: 94protected:
93 EmuWindow() 95 EmuWindow()
94 { 96 {
95 // TODO 97 // TODO: Find a better place to set this.
96 config.min_client_area_size = std::make_pair(300u, 500u); 98 config.min_client_area_size = std::make_pair(400u, 480u);
97 active_config = config; 99 active_config = config;
98 } 100 }
99 virtual ~EmuWindow() {} 101 virtual ~EmuWindow() {}