Do not use global static variables in headers

This commit is contained in:
DHrpcs3 2015-12-21 05:35:56 +02:00
parent ae83ab5436
commit d8bef46c2a
10 changed files with 58 additions and 70 deletions

View file

@ -110,7 +110,17 @@ struct CgBinaryProgram
class CgBinaryDisasm
{
private:
OPDEST dst;
SRC0 src0;
SRC1 src1;
SRC2 src2;
D0 d0;
D1 d1;
D2 d2;
D3 d3;
SRC src[3];
std::string m_path; // used for FP decompiler thread, delete this later
u8* m_buffer;