MORTEVIELLE: Removed all the remaining text mode function stubs

This commit is contained in:
Paul Gilbert 2012-02-12 22:54:41 +11:00 committed by Strangerke
parent 9f99fabaa8
commit ce42caf57c
5 changed files with 1 additions and 24 deletions

View File

@ -48,7 +48,6 @@ void menut(int no, Common::String nom) {
l = lo(no);
s = nom;
if (! tesok) {
clrscr;
mortevielle_exit(0);
}
while (s.size() < 20) s = s + ' ';

View File

@ -260,7 +260,6 @@ void clsf10() {
}
void stop() {
clrscr;
hirs();
gd = ams;
hirs();

View File

@ -150,7 +150,7 @@ Common::ErrorCode MortevielleEngine::initialise() {
init_lieu();
sonoff = false;
f2_all = false;
textcolor(9);
teskbd();
dialpre();
newgd = gd;

View File

@ -255,17 +255,6 @@ Common::String copy(const Common::String &s, int idx, size_t size) {
int port[0xfff];
byte mem[65536 * 16];
int wherey;
void gotoxy(int x, int y) {
}
void textcolor(int c) {
}
void output(const Common::String &s) {
debug(s.c_str());
}
void graphbackground(int c) {
}
void intr(int intNum, registres &regs) {
}

View File

@ -411,16 +411,6 @@ extern byte mem[65536 * 16];
#define hires {}
#define mortevielle_exit(ret) error("Exit the game")
// Text screen functions not relevant for ScummVM
#define clrscr { warning("ClrScr"); }
#define clreol {}
#define graphcolormode {}
extern void gotoxy(int x, int y);
extern void textcolor(int c);
extern void output(const Common::String &s);
extern void graphbackground(int c);
extern int wherey;
// Stubs for input functions
extern bool keypressed();
extern char get_ch();