From 9053dea42b6c79000d0b46bc9ebd16c0a71842ee Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 10 Jul 2001 19:30:44 +0000 Subject: [PATCH] --- source/save/save.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/save/save.cpp b/source/save/save.cpp index e2ad7da79..7d1370d5f 100644 --- a/source/save/save.cpp +++ b/source/save/save.cpp @@ -113,14 +113,14 @@ void CSaveScene::init() tb->init(m_wantToSaveFrame); tb->setObjectXYWH(0,0,WANT_TO_SAVE__FRAME_W,40); tb->setText(STR__SAVE__DO_YOU_WANT_TO_SAVE); - CGUIFactory::createValueButtonFrame(m_wantToSaveFrame, - 0,50,WANT_TO_SAVE__FRAME_W,20, - STR__YES, - &m_userResponse,USERRESPONSE__YES); CGUIFactory::createValueButtonFrame(m_wantToSaveFrame, 0,70,WANT_TO_SAVE__FRAME_W,20, STR__NO, &m_userResponse,USERRESPONSE__NO); + CGUIFactory::createValueButtonFrame(m_wantToSaveFrame, + 0,50,WANT_TO_SAVE__FRAME_W,20, + STR__YES, + &m_userResponse,USERRESPONSE__YES); m_blankFrame=new ("saveframe") CGUIGroupFrame(); m_blankFrame->init(NULL); @@ -150,14 +150,14 @@ void CSaveScene::init() m_yesNoResponseTextBox->init(m_yesNoResponseFrame); m_yesNoResponseTextBox->setObjectXYWH(0,0,NORMAL__FRAME_W,80); m_yesNoResponseTextBox->setText(STR__BLANK); - CGUIFactory::createValueButtonFrame(m_yesNoResponseFrame, - 0,NORMAL__FRAME_H-50,WANT_TO_SAVE__FRAME_W,20, - STR__YES, - &m_userResponse,USERRESPONSE__YES); CGUIFactory::createValueButtonFrame(m_yesNoResponseFrame, 0,NORMAL__FRAME_H-30,WANT_TO_SAVE__FRAME_W,20, STR__NO, &m_userResponse,USERRESPONSE__NO); + CGUIFactory::createValueButtonFrame(m_yesNoResponseFrame, + 0,NORMAL__FRAME_H-50,WANT_TO_SAVE__FRAME_W,20, + STR__YES, + &m_userResponse,USERRESPONSE__YES); CFader::setFadingIn();