[Scummvm-git-logs] scummvm master -> 987757762a5e9d689bd1f42c0e1540886e775ddc
sev-
noreply at scummvm.org
Sun Mar 24 17:11:18 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
987757762a TOON: Dual-license the engine
Commit: 987757762a5e9d689bd1f42c0e1540886e775ddc
https://github.com/scummvm/scummvm/commit/987757762a5e9d689bd1f42c0e1540886e775ddc
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-03-24T18:11:03+01:00
Commit Message:
TOON: Dual-license the engine
Confirmed with the engine author, SylvainTV
Changed paths:
engines/toon/anim.cpp
engines/toon/anim.h
engines/toon/audio.cpp
engines/toon/audio.h
engines/toon/character.cpp
engines/toon/character.h
engines/toon/conversation.cpp
engines/toon/conversation.h
engines/toon/detection.cpp
engines/toon/drew.cpp
engines/toon/drew.h
engines/toon/flux.cpp
engines/toon/flux.h
engines/toon/font.cpp
engines/toon/font.h
engines/toon/hotspot.cpp
engines/toon/hotspot.h
engines/toon/metaengine.cpp
engines/toon/movie.cpp
engines/toon/movie.h
engines/toon/path.cpp
engines/toon/path.h
engines/toon/picture.cpp
engines/toon/picture.h
engines/toon/resource.cpp
engines/toon/resource.h
engines/toon/script.cpp
engines/toon/script.h
engines/toon/script_func.cpp
engines/toon/script_func.h
engines/toon/state.cpp
engines/toon/state.h
engines/toon/subtitles.cpp
engines/toon/subtitles.h
engines/toon/text.cpp
engines/toon/text.h
engines/toon/tools.cpp
engines/toon/tools.h
engines/toon/toon.cpp
engines/toon/toon.h
video/smk_decoder.cpp
video/smk_decoder.h
diff --git a/engines/toon/anim.cpp b/engines/toon/anim.cpp
index cae43163e0b..3e0b22222c8 100644
--- a/engines/toon/anim.cpp
+++ b/engines/toon/anim.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/anim.h b/engines/toon/anim.h
index 426a0ec95e0..de3415858d4 100644
--- a/engines/toon/anim.h
+++ b/engines/toon/anim.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_ANIM_H
diff --git a/engines/toon/audio.cpp b/engines/toon/audio.cpp
index 883dca3a18c..219a1da66d9 100644
--- a/engines/toon/audio.cpp
+++ b/engines/toon/audio.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/audio.h b/engines/toon/audio.h
index bfd4a0c05c9..757f81dcb5e 100644
--- a/engines/toon/audio.h
+++ b/engines/toon/audio.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_AUDIO_H
diff --git a/engines/toon/character.cpp b/engines/toon/character.cpp
index e776006ed7d..d85ccba0a16 100644
--- a/engines/toon/character.cpp
+++ b/engines/toon/character.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/character.h b/engines/toon/character.h
index d5999a8af74..9aa46c2343b 100644
--- a/engines/toon/character.h
+++ b/engines/toon/character.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_CHARACTER_H
diff --git a/engines/toon/conversation.cpp b/engines/toon/conversation.cpp
index 2e0d3c86577..66b6dd6334b 100644
--- a/engines/toon/conversation.cpp
+++ b/engines/toon/conversation.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "toon/conversation.h"
diff --git a/engines/toon/conversation.h b/engines/toon/conversation.h
index 2cc70591c79..e49b35004d2 100644
--- a/engines/toon/conversation.h
+++ b/engines/toon/conversation.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_CONVERSATION_H
diff --git a/engines/toon/detection.cpp b/engines/toon/detection.cpp
index e94269b4bda..fd03e8d668f 100644
--- a/engines/toon/detection.cpp
+++ b/engines/toon/detection.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "engines/advancedDetector.h"
diff --git a/engines/toon/drew.cpp b/engines/toon/drew.cpp
index ec6af6df09a..47b272e53df 100644
--- a/engines/toon/drew.cpp
+++ b/engines/toon/drew.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/drew.h b/engines/toon/drew.h
index 8602f24d999..4061b2e2d06 100644
--- a/engines/toon/drew.h
+++ b/engines/toon/drew.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_DREW_H
diff --git a/engines/toon/flux.cpp b/engines/toon/flux.cpp
index 20caa4bfe3f..e1e71696cdd 100644
--- a/engines/toon/flux.cpp
+++ b/engines/toon/flux.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/flux.h b/engines/toon/flux.h
index 0712f0f515c..ffe3f9b05f4 100644
--- a/engines/toon/flux.h
+++ b/engines/toon/flux.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_FLUX_H
diff --git a/engines/toon/font.cpp b/engines/toon/font.cpp
index a045491ab35..4516d38b960 100644
--- a/engines/toon/font.cpp
+++ b/engines/toon/font.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
@@ -170,7 +177,7 @@ void FontRenderer::computeSize(const Common::String &origText, int16 *retX, int1
//Common::Rect charRect = _currentFont->getFrameRect(curChar);
lastLineHeight = MAX(lastLineHeight, _currentFont ? _currentFont->getHeight() :
(int16)_currentDemoFont->getHeight());
-
+
}
text++;
}
diff --git a/engines/toon/font.h b/engines/toon/font.h
index 6532ef4de58..c74cc396bf6 100644
--- a/engines/toon/font.h
+++ b/engines/toon/font.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_FONT_H
diff --git a/engines/toon/hotspot.cpp b/engines/toon/hotspot.cpp
index c516be34b3a..50c18afdd56 100644
--- a/engines/toon/hotspot.cpp
+++ b/engines/toon/hotspot.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/hotspot.h b/engines/toon/hotspot.h
index f4961695d11..0d4bac8e68a 100644
--- a/engines/toon/hotspot.h
+++ b/engines/toon/hotspot.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_HOTSPOT_H
diff --git a/engines/toon/metaengine.cpp b/engines/toon/metaengine.cpp
index de07c028b6a..7fb01cbafcf 100644
--- a/engines/toon/metaengine.cpp
+++ b/engines/toon/metaengine.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/config-manager.h"
diff --git a/engines/toon/movie.cpp b/engines/toon/movie.cpp
index ca120bda872..991f1db007d 100644
--- a/engines/toon/movie.cpp
+++ b/engines/toon/movie.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/movie.h b/engines/toon/movie.h
index f6098be74e0..39a6dc046eb 100644
--- a/engines/toon/movie.h
+++ b/engines/toon/movie.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_MOVIE_H
diff --git a/engines/toon/path.cpp b/engines/toon/path.cpp
index 9f391ac3c5a..0b324a1e9aa 100644
--- a/engines/toon/path.cpp
+++ b/engines/toon/path.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/path.h b/engines/toon/path.h
index e12b860b087..2a6a7fbf46c 100644
--- a/engines/toon/path.h
+++ b/engines/toon/path.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_PATH_H
diff --git a/engines/toon/picture.cpp b/engines/toon/picture.cpp
index c63b3eb5b05..a37887d2758 100644
--- a/engines/toon/picture.cpp
+++ b/engines/toon/picture.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "toon/picture.h"
diff --git a/engines/toon/picture.h b/engines/toon/picture.h
index 2a955bc752c..b40b577a43a 100644
--- a/engines/toon/picture.h
+++ b/engines/toon/picture.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_PICTURE_H
diff --git a/engines/toon/resource.cpp b/engines/toon/resource.cpp
index 813c7df4ced..b52cd94128b 100644
--- a/engines/toon/resource.cpp
+++ b/engines/toon/resource.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "toon/resource.h"
diff --git a/engines/toon/resource.h b/engines/toon/resource.h
index c5a8b7f61e3..d2cfa815471 100644
--- a/engines/toon/resource.h
+++ b/engines/toon/resource.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_RESOURCE_H
diff --git a/engines/toon/script.cpp b/engines/toon/script.cpp
index 4707951ee5d..61b9162eb0c 100644
--- a/engines/toon/script.cpp
+++ b/engines/toon/script.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/script.h b/engines/toon/script.h
index 6612868c814..d5a48d30d6c 100644
--- a/engines/toon/script.h
+++ b/engines/toon/script.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_SCRIPT_H
diff --git a/engines/toon/script_func.cpp b/engines/toon/script_func.cpp
index af8c141e4ee..32522ca7c71 100644
--- a/engines/toon/script_func.cpp
+++ b/engines/toon/script_func.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/script_func.h b/engines/toon/script_func.h
index f68608d3088..0e28f3f10fa 100644
--- a/engines/toon/script_func.h
+++ b/engines/toon/script_func.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef SCRIPT_FUNC_H
diff --git a/engines/toon/state.cpp b/engines/toon/state.cpp
index d3906d9a40d..386831011da 100644
--- a/engines/toon/state.cpp
+++ b/engines/toon/state.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/state.h b/engines/toon/state.h
index f9a23c9960d..65fd33d85c0 100644
--- a/engines/toon/state.h
+++ b/engines/toon/state.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_STATE_H
diff --git a/engines/toon/subtitles.cpp b/engines/toon/subtitles.cpp
index aaa50b8b9d9..23ebaf10412 100644
--- a/engines/toon/subtitles.cpp
+++ b/engines/toon/subtitles.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/subtitles.h b/engines/toon/subtitles.h
index fe9f8d9cb56..f8944f6929e 100644
--- a/engines/toon/subtitles.h
+++ b/engines/toon/subtitles.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_SUBTITLES_H
diff --git a/engines/toon/text.cpp b/engines/toon/text.cpp
index 52ea351525e..8a4501b1efe 100644
--- a/engines/toon/text.cpp
+++ b/engines/toon/text.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/text.h b/engines/toon/text.h
index 271a7ba84f1..6514bac18f4 100644
--- a/engines/toon/text.h
+++ b/engines/toon/text.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_TEXT_H
diff --git a/engines/toon/tools.cpp b/engines/toon/tools.cpp
index fe8632d6c1f..74e164c7322 100644
--- a/engines/toon/tools.cpp
+++ b/engines/toon/tools.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/debug.h"
diff --git a/engines/toon/tools.h b/engines/toon/tools.h
index 7779ab984ac..35696562e57 100644
--- a/engines/toon/tools.h
+++ b/engines/toon/tools.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_TOOLS_H
diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp
index 43a4ada42f2..65a34547510 100644
--- a/engines/toon/toon.cpp
+++ b/engines/toon/toon.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#include "common/system.h"
diff --git a/engines/toon/toon.h b/engines/toon/toon.h
index 188945d4d76..4a8ce8be869 100644
--- a/engines/toon/toon.h
+++ b/engines/toon/toon.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef TOON_TOON_H
diff --git a/video/smk_decoder.cpp b/video/smk_decoder.cpp
index 5f6f096d2d5..2343a468947 100644
--- a/video/smk_decoder.cpp
+++ b/video/smk_decoder.cpp
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * non-exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
// Based on http://wiki.multimedia.cx/index.php?title=Smacker
diff --git a/video/smk_decoder.h b/video/smk_decoder.h
index c913daebab8..d8af8e8571a 100644
--- a/video/smk_decoder.h
+++ b/video/smk_decoder.h
@@ -17,6 +17,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ *
+ * This file is dual-licensed.
+ * In addition to the GPLv3 license mentioned above, MojoTouch has
+ * non-exclusvely licensed this code on March 23th, 2024, to be use in
+ * closed-source products.
+ * Therefore, any contributions (commits) to it will also be dual-licensed.
+ *
*/
#ifndef VIDEO_SMK_PLAYER_H
More information about the Scummvm-git-logs
mailing list