AVALANCHE: Janitorial - Remove extra blank lines

This commit is contained in:
Strangerke 2013-11-22 21:40:16 +01:00
parent 93e5d415c6
commit 11c15bea00
7 changed files with 8 additions and 20 deletions

View file

@ -199,7 +199,6 @@ void Clock::chime() {
}
}
void AvalancheEngine::handleKeyDown(Common::Event &event) {
_sound->click();
@ -576,7 +575,6 @@ void AvalancheEngine::exitRoom(byte x) {
_lastRoomNotMap = _room;
}
/**
* Only when entering a NEW town! Not returning to the last one,
* but choosing another from the map.
@ -1341,7 +1339,6 @@ void AvalancheEngine::drawDirection() { // It's data is loaded in load_digits().
CursorMan.showMouse(true);
}
void AvalancheEngine::gameOver() {
_userMovesAvvy = false;

View file

@ -50,5 +50,4 @@ bool AvalancheConsole::Cmd_MagicLines(int argc, const char **argv) {
return false;
}
} // End of namespace Avalanche

View file

@ -190,7 +190,6 @@ void Dialogs::scrollModeNormal() {
break;
} while (!((mrelease > 0) || (buttona1()) || (buttonb1())));
if (mrelease == 0) {
inkey();
if (aboutscroll) {

View file

@ -127,7 +127,6 @@ static const int16 kScreenHeight = 200;
static const int16 kWalk = 3;
static const int16 kRun = 5;
} // End of namespace Avalanche
#endif // AVALANCHE_ENUMS_H

View file

@ -127,7 +127,6 @@ void GraphicManager::loadMouse(byte which) {
cursor.create(16, 32, Graphics::PixelFormat::createFormatCLUT8());
cursor.fillRect(Common::Rect(0, 0, 16, 32), 255);
// The AND mask.
f.seek(kMouseSize * 2 * which + 134);

View file

@ -749,8 +749,6 @@ void Parser::storeInterrogation(byte interrogation) {
_vm->_timer->cardiffSurvey();
}
void Parser::parse() {
// First parsing - word identification
if (!_thats.empty())
@ -763,7 +761,6 @@ void Parser::parse() {
_person = kPeoplePardon;
clearWords();
// A cheat mode attempt.
if (_inputText[0] == '.') {
cheatParse(_inputText);
@ -1669,7 +1666,6 @@ void Parser::doThat() {
// "Slip" object
_thing -= 49;
if ((_verb != kVerbCodeLoad) && (_verb != kVerbCodeSave) && (_verb != kVerbCodeQuit) && (_verb != kVerbCodeInfo) && (_verb != kVerbCodeHelp)
&& (_verb != kVerbCodeLarrypass) && (_verb != kVerbCodePhaon) && (_verb != kVerbCodeBoss) && (_verb != kVerbCodeCheat) && (_verb != kVerbCodeRestart)
&& (_verb != kVerbCodeDir) && (_verb != kVerbCodeScore) && (_verb != kVerbCodeHiscores) && (_verb != kVerbCodeSmartAlec)) {

View file

@ -34,7 +34,6 @@
#include "common/str.h"
#include "common/serializer.h"
namespace Avalanche {
class AvalancheEngine;