1
0
Fork 0

Fix CLS bug

This commit is contained in:
Austin Morlan 2020-02-02 12:15:59 -08:00
parent 52c86bee81
commit 084f2e9a9c
Signed by: austin
GPG Key ID: FD6B27654AF5E348
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ void Chip8::OP_NULL()
void Chip8::OP_00E0()
{
memset(video, 0, VIDEO_HEIGHT * VIDEO_WIDTH);
memset(video, 0, sizeof(video));
}
void Chip8::OP_00EE()