[Scummvm-cvs-logs] SF.net SVN: scummvm:[48242] scummvm/trunk/sound/rate.cpp
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Fri Mar 12 01:37:25 CET 2010
Revision: 48242
http://scummvm.svn.sourceforge.net/scummvm/?rev=48242&view=rev
Author: fingolfin
Date: 2010-03-12 00:37:25 +0000 (Fri, 12 Mar 2010)
Log Message:
-----------
Fix typos
Modified Paths:
--------------
scummvm/trunk/sound/rate.cpp
Modified: scummvm/trunk/sound/rate.cpp
===================================================================
--- scummvm/trunk/sound/rate.cpp 2010-03-11 23:41:28 UTC (rev 48241)
+++ scummvm/trunk/sound/rate.cpp 2010-03-12 00:37:25 UTC (rev 48242)
@@ -28,7 +28,7 @@
* Fabrice original code is part of SoX (http://sox.sourceforge.net).
* Max Horn adapted that code to the needs of ScummVM and rewrote it partial,
* in the process removing any use of floating point arithmetic. Various other
- * improvments over the original code were made.
+ * improvements over the original code were made.
*/
#include "sound/audiostream.h"
@@ -199,7 +199,7 @@
// This will overflow if inrate >= 2^16, and underflow if outrate >= 2^16.
// Also, if the quotient of the two rate becomes too small / too big, that
// would cause problems, but since we rarely scale from 1 to 65536 Hz or vice
- // versa, I think we can live with that limiation ;-).
+ // versa, I think we can live with that limitation ;-).
opos_inc = (inrate << FRAC_BITS) / outrate;
ilast0 = ilast1 = 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list