Skip to content

Commit

Permalink
HOPKINS: Change a few spaces to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Torbjörn Andersson committed Jan 23, 2013
1 parent efe910d commit 51df9a7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion engines/hopkins/anim.cpp
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion engines/hopkins/computer.cpp
Expand Up @@ -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);
}
Expand Down
8 changes: 4 additions & 4 deletions engines/hopkins/font.cpp
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion engines/hopkins/hopkins.cpp
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion engines/hopkins/talk.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 51df9a7

Please sign in to comment.