Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements
Fix whitespace changes
This commit is contained in:
committed by
Martin Natano
parent
f0680a29fc
commit
0cba3579de
@@ -169,7 +169,7 @@ int RageSoundReader_Vorbisfile::Read( float *buf, int iFrames )
|
||||
|
||||
/* In bytes: */
|
||||
int iSilentFrames = curofs - read_offset;
|
||||
iSilentFrames = min( iSilentFrames, (int) iFrames );
|
||||
iSilentFrames = std::min( iSilentFrames, (int) iFrames );
|
||||
int silence = iSilentFrames * bytes_per_frame;
|
||||
CHECKPOINT_M( ssprintf("p %i,%i: %i frames of silence needed", curofs, read_offset, silence) );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user