MORTEVIELLE: Remove 2 useless functions

This commit is contained in:
Strangerke 2013-06-28 08:04:19 +02:00
parent 1e2a9900f2
commit 67f08a3686
4 changed files with 0 additions and 17 deletions

View File

@ -55,7 +55,6 @@ int DialogManager::show(const Common::String &msg, int n) {
Common::String caseStr;
decodeAlertDetails(msg, caseNumb, lignNumb, colNumb, alertStr, caseStr);
_vm->sauvecr(50, (NUM_LINES + 1) << 4);
int i = 0;
Common::Point curPos;
@ -175,7 +174,6 @@ int DialogManager::show(const Common::String &msg, int n) {
tmp4 += " ";
_vm->_screenSurface.drawString(tmp4, 1);
}
_vm->charecr(50, (NUM_LINES + 1) * 16);
_vm->_mouse.showMouse();
/* Restore the background area */

View File

@ -319,7 +319,6 @@ void Menu::menuDown(int ii) {
xco = _menuConstants[ii - 1][0];
lignNumb = _menuConstants[ii - 1][3];
_vm->_mouse.hideMouse();
_vm->sauvecr(10, (_menuConstants[ii - 1][1] + 1) << 1);
xco = xco << 3;
if (_vm->_resolutionScaler == 1)
cx = 10;
@ -392,8 +391,6 @@ void Menu::menuDown(int ii) {
*/
void Menu::menuUp(int msgId) {
if (_multiTitle) {
_vm->charecr(10, (_menuConstants[msgId - 1][1] + 1) << 1);
/* Restore the background area */
assert(_vm->_screenSurface.pitch == _vm->_backgroundSurface.pitch);

View File

@ -528,8 +528,6 @@ public:
void handleDescriptionText(int f, int mesgId);
int animof(int ouf, int num);
void pictout(int seg, int dep, int x, int y);
void sauvecr(int y, int dy);
void charecr(int y, int dy);
};
extern MortevielleEngine *g_vm;

View File

@ -3441,14 +3441,4 @@ int MortevielleEngine::testou() {
return ord(ch);
}
void MortevielleEngine::sauvecr(int y, int dy) {
// _mouse.hideMouse();
// _mouse.showMouse();
}
void MortevielleEngine::charecr(int y, int dy) {
// _mouse.hideMouse();
// _mouse.showMouse();
}
} // End of namespace Mortevielle