Skip to content

Commit

Permalink
maybe changed stuff?
Browse files Browse the repository at this point in the history
  • Loading branch information
vopi181 committed Jul 22, 2017
1 parent e099d0f commit 7b7ce7b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
#include <thread>

// ref
// 0x000-0x1FF - Chip 8 interpreter (contains font set in emu)
// 0x050-0x0A0 - Used for the built in 4x5 pixel font set (0-F)
Expand Down Expand Up @@ -161,7 +160,7 @@ void emulate_cycle(chip8* chip, sf::RenderWindow* window) {
case 0x0000:
switch (chip->opcode & 0x000F) {

ase 0x0000: //0x00E0: Clear Screen
case 0x0000: //0x00E0: Clear Screen
//exec op
printf("clear screen\n");
window->clear(sf::Color::Black);
Expand Down

0 comments on commit 7b7ce7b

Please sign in to comment.