diff options
author | Johannes Schickel | 2009-07-16 17:44:05 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-07-16 17:44:05 +0000 |
commit | 1e3beb40c04ef323f5354e4258659764735fdb0c (patch) | |
tree | d1a678be4cd69a538353e0befb2cb00850534824 /engines/scumm | |
parent | 2422ee06a25a82ce5367a2c36cb72422f61343e8 (diff) | |
download | scummvm-rg350-1e3beb40c04ef323f5354e4258659764735fdb0c.tar.gz scummvm-rg350-1e3beb40c04ef323f5354e4258659764735fdb0c.tar.bz2 scummvm-rg350-1e3beb40c04ef323f5354e4258659764735fdb0c.zip |
This commit is just for DrMcCoy. (forgot to fix two usages of whitespaces instead of tabs for indentation -.-)
svn-id: r42539
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/dialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/dialogs.cpp b/engines/scumm/dialogs.cpp index 9d3ba527c4..880fab04a5 100644 --- a/engines/scumm/dialogs.cpp +++ b/engines/scumm/dialogs.cpp @@ -641,7 +641,7 @@ HelpDialog::HelpDialog(const GameSettings &game) new GUI::ButtonWidget(this, "ScummHelp.Close", "Close", kCloseCmd, 'C'); _prevButton->clearFlags(WIDGET_ENABLED); - _numLines = HELP_NUM_LINES; + _numLines = HELP_NUM_LINES; // Dummy entries for (int i = 0; i < HELP_NUM_LINES; i++) { @@ -662,7 +662,7 @@ void HelpDialog::reflowLayout() { // Make sure than we don't have more lines than what we can fit // on the space that the layout reserves for text - _numLines = MIN(HELP_NUM_LINES, (int)(h / lineHeight)); + _numLines = MIN(HELP_NUM_LINES, (int)(h / lineHeight)); int keyW = w * 20 / 100; int dscX = x + keyW + 32; |