diff options
Diffstat (limited to 'sound/mods')
-rw-r--r-- | sound/mods/paula.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mods/paula.cpp b/sound/mods/paula.cpp index f801ecfc9f..e7a916f218 100644 --- a/sound/mods/paula.cpp +++ b/sound/mods/paula.cpp @@ -159,7 +159,7 @@ int Paula::readBufferIntern(int16 *buffer, const int numSamples) { // achieve the same more efficiently: Take rate modulo sLen // TODO: This messes up dmaCount and shouldnt happen? if (sLen < rate) - warning("Paula: lenght %d is lesser than rate", _voice[voice].length); + warning("Paula: length %d is lesser than rate", _voice[voice].length); // rate %= sLen; // Repeat as long as necessary. |