diff --git a/pcsx2/HashMap.h b/pcsx2/HashMap.h index 3ba18aea89..20782e3c52 100644 --- a/pcsx2/HashMap.h +++ b/pcsx2/HashMap.h @@ -619,7 +619,7 @@ public: } private: - UnicodeDictionary( const Dictionary& src ) {} + UnicodeDictionary( const UnicodeDictionary& src ) {} }; } \ No newline at end of file diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 163fcd3de1..429a10b887 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -190,11 +190,11 @@ void handle_extended_t( IniPatch *p) PrevCheatType = 0; if (((u32Val&0x0FFFFFFF) & 0x3FFFFFFC) != 0) { - if (LastType=0x0) + if (LastType==0x0) memWrite8(PrevCheataddr,(u8)p->data&0xFF); - else if (LastType=0x1) + else if (LastType==0x1) memWrite16(PrevCheataddr,(u16)p->data&0x0FFFF); - else if (LastType=0x2) + else if (LastType==0x2) memWrite32(PrevCheataddr,(u32)p->data); }