mirror of https://github.com/bsnes-emu/bsnes.git
3 lines
142 B
C++
3 lines
142 B
C++
|
bool Cheat::active() const { return cheat_enabled; }
|
||
|
bool Cheat::exists(unsigned addr) const { return bitmask[addr >> 3] & 1 << (addr & 7); }
|