Skip to content

Commit

Permalink
reflected changes in Fel
Browse files Browse the repository at this point in the history
  • Loading branch information
ferris committed Nov 16, 2013
1 parent 54e1024 commit 6683e3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Chip8/Chip8.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ class Chip8 : public IEmulator
~Chip8();

virtual void Reset();
virtual void Update();
void Update();

virtual int GetOutputWidth() const;
virtual int GetOutputHeight() const;
int GetOutputWidth() const;
int GetOutputHeight() const;

virtual void SetVideoDriver(IVideoDriver *videoDriver);
virtual void SetAudioDriver(IAudioDriver *audioDriver);
void SetVideoDriver(IVideoDriver *videoDriver);
void SetAudioDriver(IAudioDriver *audioDriver);

virtual void CpuCyclesCallback(int numCycles);

Expand Down

0 comments on commit 6683e3a

Please sign in to comment.