Skip to content

Commit

Permalink
Change the ring buffer size to 32 as seen in Ghidra
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaposfos13 committed Feb 4, 2025
1 parent ebb62d7 commit 1d299e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ inline int GetAxis(int min, int max, int value) {
return std::clamp((255 * (value - min)) / (max - min), 0, 255);
}

constexpr u32 MAX_STATES = 64;
constexpr u32 MAX_STATES = 32;

class GameController {
public:
Expand Down

0 comments on commit 1d299e3

Please sign in to comment.