Fix regression that caused input to fail, after load or save error occurs.

svn-id: r26756
This commit is contained in:
Travis Howell 2007-05-06 09:31:32 +00:00
parent a4cc51b8c5
commit 76c98a03af

View File

@ -215,8 +215,8 @@ void AGOSEngine::waitWindow(WindowBlock *window) {
windowPutChar(window, *message);
ha = findEmptyHitArea();
ha->x = 96;
ha->y = 62;
ha->x = (window->width / 2 + window->x - 3) * 8;
ha->y = window->height * 8 + window->y - 8;
ha->width = 48;
ha->height = 8;
ha->flags = kBFBoxInUse;