diff options
| author | Max Horn | 2007-12-26 00:07:19 +0000 | 
|---|---|---|
| committer | Max Horn | 2007-12-26 00:07:19 +0000 | 
| commit | df7ece45f6122278f7154f1f81acf41193cc12e1 (patch) | |
| tree | 64dde46b6b9081a88555fa397bce86488ba4d3eb | |
| parent | d104637a3acf2dcf32950ffa73dfa976c9f1f141 (diff) | |
| download | scummvm-rg350-df7ece45f6122278f7154f1f81acf41193cc12e1.tar.gz scummvm-rg350-df7ece45f6122278f7154f1f81acf41193cc12e1.tar.bz2 scummvm-rg350-df7ece45f6122278f7154f1f81acf41193cc12e1.zip  | |
remove & rename are not portable
svn-id: r29995
| -rw-r--r-- | engines/drascula/drascula.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 65f4f717a7..465f54e34a 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -3613,8 +3613,8 @@ void DrasculaEngine::canal_p(const char *fich){  	ald2.close();  	ald3.close(); -	remove(fich); -	rename(fich2, fich); +	//remove(fich);	// FIXME: Not portable +	//rename(fich2, fich);	// FIXME: Not portable  }  void DrasculaEngine::puertas_cerradas(int l) {  | 
