diff options
author | uruk | 2014-04-25 20:11:32 +0200 |
---|---|---|
committer | uruk | 2014-04-25 20:11:32 +0200 |
commit | aad77304a8727ba1d2a1b802a95c7f8085d50853 (patch) | |
tree | 46ac1c13fcba5d6269f857a05633252202dc8b91 | |
parent | b429e746a7ba8f745225952b8a632c5cd9b2f8f0 (diff) | |
download | scummvm-rg350-aad77304a8727ba1d2a1b802a95c7f8085d50853.tar.gz scummvm-rg350-aad77304a8727ba1d2a1b802a95c7f8085d50853.tar.bz2 scummvm-rg350-aad77304a8727ba1d2a1b802a95c7f8085d50853.zip |
CGE2: Add copyright comments to the source files.
-rw-r--r-- | engines/cge2/cge2.cpp | 5 | ||||
-rw-r--r-- | engines/cge2/cge2.h | 5 | ||||
-rw-r--r-- | engines/cge2/detection.cpp | 7 |
3 files changed, 16 insertions, 1 deletions
diff --git a/engines/cge2/cge2.cpp b/engines/cge2/cge2.cpp index 488076f3f5..0b06cd0fb4 100644 --- a/engines/cge2/cge2.cpp +++ b/engines/cge2/cge2.cpp @@ -20,6 +20,11 @@ * */ +/* + * This code is based on original Sfinx source code + * Copyright (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon + */ + #include "cge2/cge2.h" namespace CGE2 { diff --git a/engines/cge2/cge2.h b/engines/cge2/cge2.h index 46aa4a3a21..ee4ecf62b1 100644 --- a/engines/cge2/cge2.h +++ b/engines/cge2/cge2.h @@ -20,6 +20,11 @@ * */ +/* + * This code is based on original Sfinx source code + * Copyright (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon + */ + #ifndef CGE2_H #define CGE2_H diff --git a/engines/cge2/detection.cpp b/engines/cge2/detection.cpp index 12430780b1..9c63af1ec6 100644 --- a/engines/cge2/detection.cpp +++ b/engines/cge2/detection.cpp @@ -20,6 +20,11 @@ * */ +/* + * This code is based on original Sfinx source code + * Copyright (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon + */ + #include "cge2/cge2.h" #include "engines/advancedDetector.h" @@ -55,7 +60,7 @@ public: } virtual const char *getOriginalCopyright() const { - return "Sfinx (c) 1997 L.K. Avalon"; + return "Sfinx (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon"; } virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const; |