Jit: Make IsInCodeSpace() const

This commit is contained in:
Lioncash
2015-06-04 20:52:53 -04:00
parent 4f276ede0f
commit fe77505d4d
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ public:
JitBaseBlockCache *GetBlockCache() { return &blocks; }
bool IsInCodeSpace(u8 *ptr) { return IsInSpace(ptr); }
bool IsInCodeSpace(u8 *ptr) const { return IsInSpace(ptr); }
bool HandleFault(uintptr_t access_address, SContext* ctx) override;