From 0d5d8cb1d4c74c8de49d595a122f60094fc40a27 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 30 May 2021 19:42:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix=20NOSOUND?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/minitext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/minitext.cpp b/Source/minitext.cpp index 1ca444476..9944a0e05 100644 --- a/Source/minitext.cpp +++ b/Source/minitext.cpp @@ -69,7 +69,7 @@ int CalculateTextSpeed(int nSFX) assert(sfxFrames != 0); #else // Sound is disabled -- estimate length from the number of lines. - Uint32 SfxFrames = numLines * 3000; + Uint32 sfxFrames = numLines * 3000; #endif int textHeight = LineHeight * numLines;