mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
2 lines
142 B
C++
2 lines
142 B
C++
bool Cheat::active() const { return cheat_enabled; }
|
|
bool Cheat::exists(unsigned addr) const { return bitmask[addr >> 3] & 1 << (addr & 7); }
|