Fixed some warnings.

svn-id: r28852
This commit is contained in:
Torbjörn Andersson 2007-09-04 19:39:35 +00:00
parent 6391965d3b
commit 4d30763ab9
2 changed files with 5 additions and 5 deletions

View File

@ -1497,7 +1497,7 @@ void DrasculaEngine::carga_escoba_1(const char *nom_fich) {
if (!strcmp(num_room, "54.alg")) {
for (l = suelo_y1 - 1; l > 84; l--) {
factor_red[l] = lejos - pequegnez;
factor_red[l] = (int)(lejos - pequegnez);
pequegnez = pequegnez + chiquez;
}
}
@ -8495,7 +8495,7 @@ void DrasculaEngine::pantalla_56(int fl) {
hay_respuesta = 0;
}
void DrasculaEngine::habla_lobo(char dicho[], char filename[]) {
void DrasculaEngine::habla_lobo(const char *dicho, const char *filename) {
int tiempou;
long tiempol;
@ -8560,7 +8560,7 @@ bucless:
VUELCA_PANTALLA(0, 0, 0, 0, 320, 200, dir_zona_pantalla);
}
void DrasculaEngine::habla_mus(char dicho[], char filename[]) {
void DrasculaEngine::habla_mus(const char *dicho, const char *filename) {
int tiempou;
long tiempol;

View File

@ -730,8 +730,8 @@ public:
void refresca_50();
void refresca_57();
void habla_igor_sentado(const char *, const char *);
void habla_lobo(char dicho[], char filename[]);
void habla_mus(char dicho[], char filename[]);
void habla_lobo(const char *dicho, const char *filename);
void habla_mus(const char *dicho, const char *filename);
private: