mirror of https://github.com/PCSX2/pcsx2.git
Fix build error with wxWidgets 2.8.
Regression introduced in 81891ac1097f28fc97c0bd4226b0b72394c2ef69; assigning "" to a wxString results in an ambiguity error when building with wxWidgets 2.8 (this could well be a bug in wxWidgets). The default wxString constructor creates an empty string anyway, so these assignments are unnecessary.
This commit is contained in:
parent
df356694c5
commit
b66cd84b9a
|
@ -308,8 +308,6 @@ public:
|
||||||
SysAutoRun = false;
|
SysAutoRun = false;
|
||||||
SysAutoRunElf = false;
|
SysAutoRunElf = false;
|
||||||
CdvdSource = CDVDsrc_NoDisc;
|
CdvdSource = CDVDsrc_NoDisc;
|
||||||
IsoFile = "";
|
|
||||||
ElfFile = "";
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue