mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
3c60f3966b
## Link to GitHub Issue or related Pull Request, if one exists n/a ## Description of change Add two options: 1. option to adjust poll rate 2. option to change emulation size Also, the default configuration is changing from: * ~1000Hz ish to 120Hz (default) * 3x3 point to 1x1 point In theory this does not make a meaningful change to how the game plays. But if people want the old behavior they can change it. ## Testing Tested on Volzza2 and Reflesia.
20 lines
327 B
C++
20 lines
327 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "games/game.h"
|
|
|
|
namespace games::rb {
|
|
|
|
extern uint16_t TOUCH_SCALING;
|
|
extern uint8_t TOUCH_SIZE;
|
|
extern uint16_t TOUCH_POLL_RATE;
|
|
|
|
class RBGame : public games::Game {
|
|
public:
|
|
RBGame();
|
|
virtual void attach();
|
|
virtual void detach();
|
|
};
|
|
}
|