fix a stupid bug

This commit is contained in:
zeromus 2012-06-10 21:16:23 +00:00
parent 07ad0acdbe
commit b9b18137db
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ namespace BizHawk.MultiClient
//needsclear = false because we're about to clobber the data with AcceptIntArray
var newPendingSurface = sourceSurfaceSet.AllocateSurface(videoProvider.BufferWidth, videoProvider.BufferHeight, false);
newPendingSurface.AcceptIntArray(videoProvider.GetVideoBuffer());
newPendingSurface.AcceptIntArray((int[])videoProvider.GetVideoBuffer().Clone());
sourceSurfaceSet.SetPending(newPendingSurface);
wakeupEvent.Set();