[Scummvm-cvs-logs] CVS: scummvm/backends/dc audio.cpp,1.8,1.9 dc.h,1.16,1.17 dcmain.cpp,1.17,1.18 display.cpp,1.11,1.12 icon.cpp,1.3,1.4 icon.h,1.2,1.3 input.cpp,1.13,1.14 label.cpp,1.1.1.1,1.2 label.h,1.1.1.1,1.2 portdefs.h,1.3,1.4 selector.cpp,1.13,1.14 time.cpp,1.4,1.5 vmsave.cpp,1.10,1.11

Max Horn fingolfin at users.sourceforge.net
Thu Oct 2 10:29:06 CEST 2003


Update of /cvsroot/scummvm/scummvm/backends/dc
In directory sc8-pr-cvs1:/tmp/cvs-serv15707

Modified Files:
	audio.cpp dc.h dcmain.cpp display.cpp icon.cpp icon.h 
	input.cpp label.cpp label.h portdefs.h selector.cpp time.cpp 
	vmsave.cpp 
Log Message:
updated Marcus' copyright

Index: audio.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/audio.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- audio.cpp	27 Sep 2003 16:54:09 -0000	1.8
+++ audio.cpp	2 Oct 2003 17:28:02 -0000	1.9
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: dc.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/dc.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- dc.h	27 Sep 2003 16:54:09 -0000	1.16
+++ dc.h	2 Oct 2003 17:28:02 -0000	1.17
@@ -1,3 +1,25 @@
+/* ScummVM - Scumm Interpreter
+ * Dreamcast port
+ * Copyright (C) 2002-2003  Marcus Comstedt
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
 #include <common/system.h>
 #include <ronin/soundcommon.h>
 

Index: dcmain.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/dcmain.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- dcmain.cpp	27 Sep 2003 16:54:09 -0000	1.17
+++ dcmain.cpp	2 Oct 2003 17:28:02 -0000	1.18
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: display.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/display.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- display.cpp	18 Sep 2003 02:07:15 -0000	1.11
+++ display.cpp	2 Oct 2003 17:28:02 -0000	1.12
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: icon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/icon.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- icon.cpp	3 Aug 2003 16:49:33 -0000	1.3
+++ icon.cpp	2 Oct 2003 17:28:02 -0000	1.4
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: icon.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/icon.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- icon.h	3 Aug 2003 16:49:33 -0000	1.2
+++ icon.h	2 Oct 2003 17:28:02 -0000	1.3
@@ -1,3 +1,24 @@
+/* ScummVM - Scumm Interpreter
+ * Dreamcast port
+ * Copyright (C) 2002-2003  Marcus Comstedt
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
 
 class Icon
 {

Index: input.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/input.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- input.cpp	3 Aug 2003 17:59:45 -0000	1.13
+++ input.cpp	2 Oct 2003 17:28:02 -0000	1.14
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: label.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/label.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- label.cpp	21 Aug 2002 16:07:09 -0000	1.1.1.1
+++ label.cpp	2 Oct 2003 17:28:02 -0000	1.2
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: label.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/label.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- label.h	21 Aug 2002 16:07:09 -0000	1.1.1.1
+++ label.h	2 Oct 2003 17:28:02 -0000	1.2
@@ -1,3 +1,25 @@
+/* ScummVM - Scumm Interpreter
+ * Dreamcast port
+ * Copyright (C) 2002-2003  Marcus Comstedt
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
 class Label
 {
  private:

Index: portdefs.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/portdefs.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- portdefs.h	18 Oct 2002 01:39:25 -0000	1.3
+++ portdefs.h	2 Oct 2003 17:28:02 -0000	1.4
@@ -1,3 +1,25 @@
+/* ScummVM - Scumm Interpreter
+ * Dreamcast port
+ * Copyright (C) 2002-2003  Marcus Comstedt
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <fcntl.h>

Index: selector.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/selector.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- selector.cpp	18 Sep 2003 02:07:15 -0000	1.13
+++ selector.cpp	2 Oct 2003 17:28:02 -0000	1.14
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: time.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/time.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- time.cpp	27 Sep 2003 16:54:09 -0000	1.4
+++ time.cpp	2 Oct 2003 17:28:02 -0000	1.5
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

Index: vmsave.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/vmsave.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- vmsave.cpp	18 Sep 2003 02:07:15 -0000	1.10
+++ vmsave.cpp	2 Oct 2003 17:28:02 -0000	1.11
@@ -1,6 +1,6 @@
 /* ScummVM - Scumm Interpreter
  * Dreamcast port
- * Copyright (C) 2002  Marcus Comstedt
+ * Copyright (C) 2002-2003  Marcus Comstedt
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License





More information about the Scummvm-git-logs mailing list