Browse Source

💚 Fix NOSOUND

pull/2091/head
Anders Jenbo 5 years ago committed by GitHub
parent
commit
0d5d8cb1d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/minitext.cpp

2
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;

Loading…
Cancel
Save