Fixed a small audio buffer issue, and removed more debug code.

This commit is contained in:
Jonathan Thomas
2012-07-04 04:01:59 -05:00
parent 34a07b8d82
commit 53e16efd63
4 changed files with 14 additions and 14 deletions

View File

@@ -52,6 +52,9 @@ Frame Cache::GetFrame(int frame_number)
// Does frame exists in cache?
if (Exists(frame_number))
{
// Set current frame
current_frame = frame_number;
// return the Frame object
return frames[frame_number];
}