From eab352bf9c176f4da9dfc1a5fb7b9a7da5c48b70 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 11 Sep 2020 15:07:52 +0200 Subject: [PATCH] renamed function --- src/init.c | 2 +- src/screens.c | 2 +- src/tape.c | 2 +- src/tape.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/init.c b/src/init.c index ffc856e3..6b6e3263 100644 --- a/src/init.c +++ b/src/init.c @@ -6224,7 +6224,7 @@ void OpenAll(void) if (global.autoplay_leveldir) { - AutoPlayTape(); + AutoPlayTapes(); return; } else if (global.patchtapes_leveldir) diff --git a/src/screens.c b/src/screens.c index a4db11b2..fe814ec7 100644 --- a/src/screens.c +++ b/src/screens.c @@ -8439,7 +8439,7 @@ void HandleGameActions(void) GameActions(); // main game loop if (tape.auto_play && !tape.playing) - AutoPlayTape(); // continue automatically playing next tape + AutoPlayTapes(); // continue automatically playing next tape } diff --git a/src/tape.c b/src/tape.c index 1763b296..cef69c7f 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1141,7 +1141,7 @@ boolean PlaySolutionTape(void) // tape autoplay functions // ---------------------------------------------------------------------------- -void AutoPlayTape(void) +void AutoPlayTapes(void) { static LevelDirTree *autoplay_leveldir = NULL; static boolean autoplay_initialized = FALSE; diff --git a/src/tape.h b/src/tape.h index 948227e5..ea18e396 100644 --- a/src/tape.h +++ b/src/tape.h @@ -255,7 +255,7 @@ boolean hasSolutionTape(void); boolean InsertSolutionTape(void); boolean PlaySolutionTape(void); -void AutoPlayTape(void); +void AutoPlayTapes(void); void PatchTapes(void); void CreateTapeButtons(void); -- 2.34.1