mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-30 22:27:51 +00:00
Silence a few "zero as null pointer" warnings.
This commit is contained in:
parent
60e9301f40
commit
4d931c16ad
4 changed files with 5 additions and 5 deletions
|
@ -348,7 +348,7 @@ protected:
|
|||
inline void Write32(u32 value) {*(u32*)code = value; code+=4;}
|
||||
|
||||
public:
|
||||
ARMXEmitter() : code(0), startcode(0), lastCacheFlushEnd(0) {
|
||||
ARMXEmitter() : code(nullptr), startcode(nullptr), lastCacheFlushEnd(nullptr) {
|
||||
condition = CC_AL << 28;
|
||||
}
|
||||
ARMXEmitter(u8 *code_ptr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue