[Scummvm-git-logs] scummvm master -> b97cd1d5c73b658958c711bbf978e7c99d4d92c6
digitall
noreply at scummvm.org
Sun Apr 5 03:30:16 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b97cd1d5c7 TINSEL: Fix Redundant Declaration GCC Compiler Warnings
Commit: b97cd1d5c73b658958c711bbf978e7c99d4d92c6
https://github.com/scummvm/scummvm/commit/b97cd1d5c73b658958c711bbf978e7c99d4d92c6
Author: D G Turner (digitall at scummvm.org)
Date: 2026-04-05T04:30:03+01:00
Commit Message:
TINSEL: Fix Redundant Declaration GCC Compiler Warnings
Changed paths:
engines/tinsel/pcode.cpp
engines/tinsel/saveload.cpp
engines/tinsel/tinlib.cpp
engines/tinsel/tinsel.cpp
diff --git a/engines/tinsel/pcode.cpp b/engines/tinsel/pcode.cpp
index 07dd7cce398..2111ffa0680 100644
--- a/engines/tinsel/pcode.cpp
+++ b/engines/tinsel/pcode.cpp
@@ -41,9 +41,6 @@ namespace Tinsel {
extern int CallLibraryRoutine(CORO_PARAM, int operand, int32 *pp, const INT_CONTEXT *pic, RESUME_STATE *pResumeState);
-// in SCENE.CPP
-extern bool InDw1Intro();
-
//----------------- LOCAL DEFINES --------------------
#define GLOBALS_FILENAME "gdata" // name of globals file
diff --git a/engines/tinsel/saveload.cpp b/engines/tinsel/saveload.cpp
index 5c86442f222..f0b7e030654 100644
--- a/engines/tinsel/saveload.cpp
+++ b/engines/tinsel/saveload.cpp
@@ -67,9 +67,6 @@ extern void syncGlobInfo(Common::Serializer &s);
// in POLYGONS.C
extern void syncPolyInfo(Common::Serializer &s);
-// in SCENE.CPP
-extern void EndDw1Intro();
-
extern bool g_ASceneIsSaved;
//----------------- LOCAL DEFINES --------------------
diff --git a/engines/tinsel/tinlib.cpp b/engines/tinsel/tinlib.cpp
index 62c721fd673..db30d17ee55 100644
--- a/engines/tinsel/tinlib.cpp
+++ b/engines/tinsel/tinlib.cpp
@@ -99,7 +99,6 @@ extern int NewestSavedGame();
// in SCENE.CPP
extern void setshowpos();
-extern void ResetDw1Intro();
// in TINSEL.CPP
extern void SetCdChangeScene(SCNHANDLE hScene);
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index 1f80f366a6a..dfbe008c0db 100644
--- a/engines/tinsel/tinsel.cpp
+++ b/engines/tinsel/tinsel.cpp
@@ -81,7 +81,6 @@ extern void InventoryProcess(CORO_PARAM, const void *);
// In SCENE.CPP
extern SCNHANDLE GetSceneHandle();
-extern bool WasDw1IntroSkipped();
extern void ResetVarsDrives();
extern void ResetVarsEvents();
More information about the Scummvm-git-logs
mailing list