HOPKINS: Change a few spaces to tabs

This commit is contained in:
Torbjörn Andersson 2013-01-24 00:05:36 +01:00
parent efe910d689
commit 51df9a7f9b
5 changed files with 8 additions and 8 deletions

View File

@ -543,7 +543,7 @@ int AnimationManager::loadSpriteBank(int idx, const Common::String &filename) {
_vm->_globals.Bank[idx]._fileHeader = 0;
if (fileDataPtr[1] == 'L' && fileDataPtr[2] == 'E')
_vm->_globals.Bank[idx]._fileHeader = 1;
_vm->_globals.Bank[idx]._fileHeader = 1;
else if (fileDataPtr[1] == 'O' && fileDataPtr[2] == 'R')
_vm->_globals.Bank[idx]._fileHeader = 2;

View File

@ -927,7 +927,7 @@ void ComputerManager::displayScoreChar(int charPos, int charDisp) {
xp = 134;
if (charDisp >= '0' && charDisp <= '9')
idx = charDisp - 45;
idx = charDisp - 45;
_vm->_graphicsManager.AFFICHE_SPEEDVGA(_breakoutSpr, xp, 11, idx);
}

View File

@ -152,10 +152,10 @@ void FontManager::box(int idx, int messageId, const Common::String &filename, in
_vm->_graphicsManager.Restore_Mem(
_vm->_graphicsManager._vesaBuffer,
_text[idx]._textBlock,
xp,
yp,
_text[idx]._width,
_text[idx]._height);
xp,
yp,
_text[idx]._width,
_text[idx]._height);
_vm->_graphicsManager.addVesaSegment(xp, yp, xp + width, yp + height);
}
} else {

View File

@ -1972,7 +1972,7 @@ void HopkinsEngine::displayEndDemo() {
if (_globals._language == LANG_FR)
_graphicsManager.loadImage("endfr");
else
_graphicsManager.loadImage("enduk");
_graphicsManager.loadImage("enduk");
_graphicsManager.fadeInLong();
_eventsManager.delay(1500);

View File

@ -206,7 +206,7 @@ void TalkManager::PARLER_PERSO2(const Common::String &filename) {
if (_vm->_globals._introSpeechOffFl) {
int idx = 1;
int answer;
do
do
answer = dialogAnswer(idx++);
while (answer != -1);
}