shithub: cstory

Download patch

ref: 1ff57728432e93521aa48854efffc3dc916babe3
parent: 2ee1bf131e6f6a38b2a828ac8518e8b8b8d98aac
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Jun 24 08:12:28 EDT 2020

Fix typo

--- a/src/Backends/Audio/SoftwareMixer.cpp
+++ b/src/Backends/Audio/SoftwareMixer.cpp
@@ -155,7 +155,7 @@
 				*stream_pointer++ += (interpolated_sample * sound->volume_l) >> 8;
 				*stream_pointer++ += (interpolated_sample * sound->volume_r) >> 8;
 
-				// Incrememt sample
+				// Increment sample
 				sound->sample_offset_remainder += sound->advance_delta;
 				sound->position += sound->sample_offset_remainder >> 16;
 				sound->sample_offset_remainder &= 0xFFFF;