fix initialization of xdbuf and xdbackbuf

This commit is contained in:
zeromus 2022-09-10 15:31:48 -04:00
parent eaa5d6f88f
commit 06b53e912e
1 changed files with 2 additions and 2 deletions

View File

@ -130,8 +130,8 @@ int FCEU_InitVirtualVideo(void)
memset(XBuf,128,256*256);
memset(XBackBuf,128,256*256);
memset(XBuf,128,256*256);
memset(XBackBuf,128,256*256);
memset(XDBuf,0,256*256);
memset(XDBackBuf,0,256*256);
return 1;
}