Changed spaces to tabs.

svn-id: r31362
This commit is contained in:
Torbjörn Andersson 2008-04-02 04:23:00 +00:00
parent 4fa0740a27
commit ff688574c4
2 changed files with 5 additions and 5 deletions

View File

@ -516,10 +516,10 @@ void Script::doorOpen(uint16 hotspotId, uint16 v2, uint16 v3) {
// Makes the specified NPC wait for the player to walk to them // Makes the specified NPC wait for the player to walk to them
void Script::npcWait(uint16 hotspotId, uint16 v2, uint16 v3) { void Script::npcWait(uint16 hotspotId, uint16 v2, uint16 v3) {
Hotspot *hotspot = Resources::getReference().getActiveHotspot(hotspotId); Hotspot *hotspot = Resources::getReference().getActiveHotspot(hotspotId);
assert(hotspot); assert(hotspot);
hotspot->setCharacterMode(CHARMODE_WAIT_FOR_INTERACT); hotspot->setCharacterMode(CHARMODE_WAIT_FOR_INTERACT);
hotspot->setDelayCtr(130); hotspot->setDelayCtr(130);
} }
// Called during talking to Minnow to see whether the Skorl "Brenda" should be alerted // Called during talking to Minnow to see whether the Skorl "Brenda" should be alerted

View File

@ -1055,7 +1055,7 @@ bool SaveRestoreDialog::show(bool saveDialog) {
screen.screen().writeString( screen.screen().writeString(
SAVE_DIALOG_X + Surface::textX(), SAVE_DIALOG_X + Surface::textX(),
SAVE_DIALOG_Y + SR_SAVEGAME_NAMES_Y + selectedLine * FONT_HEIGHT, SAVE_DIALOG_Y + SR_SAVEGAME_NAMES_Y + selectedLine * FONT_HEIGHT,
saveNames[selectedLine]->c_str(), true); saveNames[selectedLine]->c_str(), true);
selectedLine = -1; selectedLine = -1;
continue; continue;
} }