From b66cd84b9adcfbcce5949974d04bed79f8beb0a2 Mon Sep 17 00:00:00 2001 From: Andrew Church Date: Sat, 26 Dec 2015 10:23:24 +0900 Subject: [PATCH] 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. --- pcsx2/gui/App.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/pcsx2/gui/App.h b/pcsx2/gui/App.h index 6ab4af2a74..8270bdd309 100644 --- a/pcsx2/gui/App.h +++ b/pcsx2/gui/App.h @@ -308,8 +308,6 @@ public: SysAutoRun = false; SysAutoRunElf = false; CdvdSource = CDVDsrc_NoDisc; - IsoFile = ""; - ElfFile = ""; } };