mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
Remove Globals.h
This commit is contained in:
+4
-1
@@ -38,8 +38,11 @@ protected:
|
||||
size_t region_size;
|
||||
};
|
||||
|
||||
template<class T> class CodeBlock : public CodeBlockCommon, public T, NonCopyable {
|
||||
template<class T> class CodeBlock : public CodeBlockCommon, public T {
|
||||
private:
|
||||
CodeBlock(const CodeBlock &) = delete;
|
||||
void operator=(const CodeBlock &) = delete;
|
||||
|
||||
// A privately used function to set the executable RAM space to something invalid.
|
||||
// For debugging usefulness it should be used to set the RAM to a host specific breakpoint instruction
|
||||
virtual void PoisonMemory(int offset) = 0;
|
||||
|
||||
Reference in New Issue
Block a user