aboutsummaryrefslogtreecommitdiff
path: root/engines/queen
diff options
context:
space:
mode:
authorMax Horn2007-05-30 21:56:52 +0000
committerMax Horn2007-05-30 21:56:52 +0000
commit218e132e37017b64a61cce53c5dd26267a81784a (patch)
tree3140914c2aee4c33819a41ce3235fd1e8654a58e /engines/queen
parent10764e965cb3fcd92e3f680e0e093ac5fa1867f3 (diff)
downloadscummvm-rg350-218e132e37017b64a61cce53c5dd26267a81784a.tar.gz
scummvm-rg350-218e132e37017b64a61cce53c5dd26267a81784a.tar.bz2
scummvm-rg350-218e132e37017b64a61cce53c5dd26267a81784a.zip
Updated legal headers in source files, based on what Pidgin (the IM client formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots
svn-id: r27024
Diffstat (limited to 'engines/queen')
-rw-r--r--engines/queen/bankman.cpp7
-rw-r--r--engines/queen/bankman.h7
-rw-r--r--engines/queen/command.cpp7
-rw-r--r--engines/queen/command.h7
-rw-r--r--engines/queen/credits.cpp7
-rw-r--r--engines/queen/credits.h7
-rw-r--r--engines/queen/cutaway.cpp7
-rw-r--r--engines/queen/cutaway.h7
-rw-r--r--engines/queen/debug.cpp7
-rw-r--r--engines/queen/debug.h7
-rw-r--r--engines/queen/defs.h7
-rw-r--r--engines/queen/display.cpp7
-rw-r--r--engines/queen/display.h7
-rw-r--r--engines/queen/graphics.cpp7
-rw-r--r--engines/queen/graphics.h7
-rw-r--r--engines/queen/grid.cpp7
-rw-r--r--engines/queen/grid.h7
-rw-r--r--engines/queen/input.cpp7
-rw-r--r--engines/queen/input.h7
-rw-r--r--engines/queen/journal.cpp7
-rw-r--r--engines/queen/journal.h7
-rw-r--r--engines/queen/logic.cpp7
-rw-r--r--engines/queen/logic.h7
-rw-r--r--engines/queen/music.cpp7
-rw-r--r--engines/queen/music.h7
-rw-r--r--engines/queen/musicdata.cpp7
-rw-r--r--engines/queen/queen.cpp7
-rw-r--r--engines/queen/queen.h7
-rw-r--r--engines/queen/resource.cpp7
-rw-r--r--engines/queen/resource.h7
-rw-r--r--engines/queen/restables.cpp7
-rw-r--r--engines/queen/sound.cpp7
-rw-r--r--engines/queen/sound.h7
-rw-r--r--engines/queen/state.cpp7
-rw-r--r--engines/queen/state.h7
-rw-r--r--engines/queen/structs.h7
-rw-r--r--engines/queen/talk.cpp7
-rw-r--r--engines/queen/talk.h7
-rw-r--r--engines/queen/walk.cpp7
-rw-r--r--engines/queen/walk.h7
40 files changed, 200 insertions, 80 deletions
diff --git a/engines/queen/bankman.cpp b/engines/queen/bankman.cpp
index 3769d2c908..f43af18285 100644
--- a/engines/queen/bankman.cpp
+++ b/engines/queen/bankman.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/bankman.h b/engines/queen/bankman.h
index bdc9847d31..f196268f7b 100644
--- a/engines/queen/bankman.h
+++ b/engines/queen/bankman.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/command.cpp b/engines/queen/command.cpp
index be6e1638bb..4d1ec53e09 100644
--- a/engines/queen/command.cpp
+++ b/engines/queen/command.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/command.h b/engines/queen/command.h
index 659b67f8ed..e0a6cef80a 100644
--- a/engines/queen/command.h
+++ b/engines/queen/command.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/credits.cpp b/engines/queen/credits.cpp
index 4f663cc66e..5e411f4408 100644
--- a/engines/queen/credits.cpp
+++ b/engines/queen/credits.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/credits.h b/engines/queen/credits.h
index 1cf81a3856..0aafe010f4 100644
--- a/engines/queen/credits.h
+++ b/engines/queen/credits.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/cutaway.cpp b/engines/queen/cutaway.cpp
index 5ff852dff6..1f34128820 100644
--- a/engines/queen/cutaway.cpp
+++ b/engines/queen/cutaway.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/cutaway.h b/engines/queen/cutaway.h
index bbec1406ad..c395aa4fa2 100644
--- a/engines/queen/cutaway.h
+++ b/engines/queen/cutaway.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/debug.cpp b/engines/queen/debug.cpp
index 508e6f077d..22481d377d 100644
--- a/engines/queen/debug.cpp
+++ b/engines/queen/debug.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/debug.h b/engines/queen/debug.h
index 688486af88..1b2d7582b3 100644
--- a/engines/queen/debug.h
+++ b/engines/queen/debug.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/defs.h b/engines/queen/defs.h
index b6c21b38f9..1212f6926d 100644
--- a/engines/queen/defs.h
+++ b/engines/queen/defs.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/display.cpp b/engines/queen/display.cpp
index 2a59d32739..a8c2747753 100644
--- a/engines/queen/display.cpp
+++ b/engines/queen/display.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/display.h b/engines/queen/display.h
index a23716f873..23316f880a 100644
--- a/engines/queen/display.h
+++ b/engines/queen/display.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/graphics.cpp b/engines/queen/graphics.cpp
index b3c0542592..4beca6556d 100644
--- a/engines/queen/graphics.cpp
+++ b/engines/queen/graphics.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/graphics.h b/engines/queen/graphics.h
index a1714bc59c..3963224069 100644
--- a/engines/queen/graphics.h
+++ b/engines/queen/graphics.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/grid.cpp b/engines/queen/grid.cpp
index e23ec6c59f..be0871b71d 100644
--- a/engines/queen/grid.cpp
+++ b/engines/queen/grid.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/grid.h b/engines/queen/grid.h
index 3e5ea02f0a..3ad3670eae 100644
--- a/engines/queen/grid.h
+++ b/engines/queen/grid.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/input.cpp b/engines/queen/input.cpp
index 7f74a66734..5154b04dbe 100644
--- a/engines/queen/input.cpp
+++ b/engines/queen/input.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/input.h b/engines/queen/input.h
index 8f5e58302d..9afb7472b1 100644
--- a/engines/queen/input.h
+++ b/engines/queen/input.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/journal.cpp b/engines/queen/journal.cpp
index 36f59fecb6..3db7ce82f0 100644
--- a/engines/queen/journal.cpp
+++ b/engines/queen/journal.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/journal.h b/engines/queen/journal.h
index 23110d8879..123299c6e9 100644
--- a/engines/queen/journal.h
+++ b/engines/queen/journal.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/logic.cpp b/engines/queen/logic.cpp
index ebd31abd83..1a196ddc09 100644
--- a/engines/queen/logic.cpp
+++ b/engines/queen/logic.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/logic.h b/engines/queen/logic.h
index bdb98c4ad7..b55fc3f626 100644
--- a/engines/queen/logic.h
+++ b/engines/queen/logic.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/music.cpp b/engines/queen/music.cpp
index 63ed42e810..7d37513a9f 100644
--- a/engines/queen/music.cpp
+++ b/engines/queen/music.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/music.h b/engines/queen/music.h
index 117bb5a662..22b8490367 100644
--- a/engines/queen/music.h
+++ b/engines/queen/music.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/musicdata.cpp b/engines/queen/musicdata.cpp
index 39acdf8ab4..bfb843766c 100644
--- a/engines/queen/musicdata.cpp
+++ b/engines/queen/musicdata.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/queen.cpp b/engines/queen/queen.cpp
index 148e40af80..bbb186d0ae 100644
--- a/engines/queen/queen.cpp
+++ b/engines/queen/queen.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/queen.h b/engines/queen/queen.h
index 8678ba1274..33a1830105 100644
--- a/engines/queen/queen.h
+++ b/engines/queen/queen.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/resource.cpp b/engines/queen/resource.cpp
index cd122717fe..999a86d432 100644
--- a/engines/queen/resource.cpp
+++ b/engines/queen/resource.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/resource.h b/engines/queen/resource.h
index bb6cd4ceb5..16094193d9 100644
--- a/engines/queen/resource.h
+++ b/engines/queen/resource.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/restables.cpp b/engines/queen/restables.cpp
index 8cebaccf49..721bde626f 100644
--- a/engines/queen/restables.cpp
+++ b/engines/queen/restables.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/sound.cpp b/engines/queen/sound.cpp
index 378fc04e92..6184060132 100644
--- a/engines/queen/sound.cpp
+++ b/engines/queen/sound.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/sound.h b/engines/queen/sound.h
index 8c2c9100d9..145a2d1384 100644
--- a/engines/queen/sound.h
+++ b/engines/queen/sound.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/state.cpp b/engines/queen/state.cpp
index 5709bb07c6..273208718f 100644
--- a/engines/queen/state.cpp
+++ b/engines/queen/state.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/state.h b/engines/queen/state.h
index 0cb1fd5e3b..62d941c345 100644
--- a/engines/queen/state.h
+++ b/engines/queen/state.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/structs.h b/engines/queen/structs.h
index 0bcd802037..6b852aaa9c 100644
--- a/engines/queen/structs.h
+++ b/engines/queen/structs.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/talk.cpp b/engines/queen/talk.cpp
index 2bb45a243a..a47584a003 100644
--- a/engines/queen/talk.cpp
+++ b/engines/queen/talk.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/talk.h b/engines/queen/talk.h
index d1469e2fe8..1548d0ba27 100644
--- a/engines/queen/talk.h
+++ b/engines/queen/talk.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/walk.cpp b/engines/queen/walk.cpp
index 1d34fed639..6943ca1214 100644
--- a/engines/queen/walk.cpp
+++ b/engines/queen/walk.cpp
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/engines/queen/walk.h b/engines/queen/walk.h
index 531bd84e8a..c64397e9c4 100644
--- a/engines/queen/walk.h
+++ b/engines/queen/walk.h
@@ -1,5 +1,8 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2006 The ScummVM project
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License