diff options
| author | Max Horn | 2005-05-16 00:38:30 +0000 | 
|---|---|---|
| committer | Max Horn | 2005-05-16 00:38:30 +0000 | 
| commit | 29354345045fb0bcccc1def76629402ca652a281 (patch) | |
| tree | d9e5ba3456409b4141f5114b90cc3cacac54a734 /gui/launcher.cpp | |
| parent | c9290b68ff62293e23e627ee3c3ac55e6a034e9a (diff) | |
| download | scummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.tar.gz scummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.tar.bz2 scummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.zip | |
Enlarge the option dialogs; note that the widgets should be rearranged / enlarged, too; they aren't yet
svn-id: r18123
Diffstat (limited to 'gui/launcher.cpp')
| -rw-r--r-- | gui/launcher.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 839cf84654..e7460b1842 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -137,6 +137,12 @@ protected:  EditGameDialog::EditGameDialog(const String &domain, GameSettings target)  	: OptionsDialog(domain, 10, 40, 320 - 2 * 10, 140) { +	const int screenW = g_system->getOverlayWidth(); +	const int screenH = g_system->getOverlayHeight(); +	 +	_w = screenW - 2 * 10; +	_h = screenH - 2 * 40;	// TODO/FIXME +	  	const int x = 5;  	const int w = _w - 15;  	const int labelWidth = 65; | 
