Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/controller/superscope/superscope.hpp
2 views
1
struct SuperScope : Controller {
2
void enter();
3
uint2 data();
4
void latch(bool data);
5
void serialize(serializer& s);
6
SuperScope(bool port);
7
8
//private:
9
bool latched;
10
unsigned counter;
11
12
signed x, y;
13
14
bool trigger;
15
bool cursor;
16
bool turbo;
17
bool pause;
18
bool offscreen;
19
20
bool turbolock;
21
bool triggerlock;
22
bool pauselock;
23
};
24
25