Change the ring buffer size to 32 as seen in Ghidra

This commit is contained in:
kalaposfos13 2025-02-04 20:06:32 +01:00
parent ebb62d724f
commit 1d299e30d7

View File

@ -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: