[Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.5,1.6 sky.h,1.5,1.6

Pawel Kolodziejski aquadran at users.sourceforge.net
Fri Mar 7 07:39:05 CET 2003


Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1:/tmp/cvs-serv13959/sky

Modified Files:
	sky.cpp sky.h 
Log Message:
implemented formating string error for each engine

Index: sky.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/sky.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- sky.cpp	7 Mar 2003 14:52:24 -0000	1.5
+++ sky.cpp	7 Mar 2003 15:38:10 -0000	1.6
@@ -62,6 +62,10 @@
 	
 }
 
+void SkyState::errorString(const char *buf1, char *buf2) {
+	strcpy(buf2, buf1);
+}
+
 void SkyState::pollMouseXY() {
 
 	_mouse_x = _sdl_mouse_x;

Index: sky.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/sky.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- sky.h	7 Mar 2003 14:52:24 -0000	1.5
+++ sky.h	7 Mar 2003 15:38:11 -0000	1.6
@@ -27,7 +27,7 @@
 #include "common/util.h"
 
 class SkyState : public Engine {
-
+	void errorString(const char *buf_input, char *buf_output);
 protected:
 	byte _game;
 	bool _isCDVersion;





More information about the Scummvm-git-logs mailing list