Skip to content

Commit

Permalink
Change speed to unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom committed Dec 10, 2024
1 parent d10f13f commit 17591e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulator/Cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Cpu {
uint16_t sp{};
std::array<uint16_t, 16> stack;
bool paused;
int8_t speed;
uint8_t speed;

Renderer* renderer;
Keyboard* keyboard;
Expand Down

0 comments on commit 17591e1

Please sign in to comment.