diff options
| author | Glenn Rice <glennricster@gmail.com> | 2011-03-23 02:17:03 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2011-03-23 02:17:03 +0000 |
| commit | 668d33518173e621c860197bbc87db83765f0d4a (patch) | |
| tree | a9d1837026e0a10afd2669eb65354579f219b65d /Source/Core | |
| parent | c39e3c17e199ed8f421ed62a9457ad53ba5caebf (diff) | |
Linux build fix.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7402 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Src/VideoConfigDiag.cpp | 3 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/Src/VideoConfigDiag.h | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp b/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp index d26be7d6b9..17f5811ea9 100644 --- a/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp +++ b/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp @@ -5,6 +5,7 @@ #include <wx/intl.h> +#include "Frame.h" #include "ISOFile.h" #include "GameListCtrl.h" @@ -129,7 +130,7 @@ void VideoConfigDiag::Event_Close(wxCloseEvent& ev) TextureCache::InvalidateDefer(); // For settings like hi-res textures/texture format/etc. } -wxString VideoConfigDiag::FormatString(const GameListItem *item) +static wxString FormatString(const GameListItem *item) { wxString title; if (item->GetCountry() == DiscIO::IVolume::COUNTRY_JAPAN diff --git a/Source/Core/DolphinWX/Src/VideoConfigDiag.h b/Source/Core/DolphinWX/Src/VideoConfigDiag.h index 50e57ba603..8f5b984794 100644 --- a/Source/Core/DolphinWX/Src/VideoConfigDiag.h +++ b/Source/Core/DolphinWX/Src/VideoConfigDiag.h @@ -6,7 +6,6 @@ #include <string> #include "VideoConfig.h" -#include "Frame.h" #include <wx/wx.h> #include <wx/textctrl.h> @@ -124,9 +123,6 @@ protected: ev.Skip(); } - //Retrieve a title game with correct format - wxString FormatString(const GameListItem *item); - void Event_ClickClose(wxCommandEvent&); void Event_Close(wxCloseEvent&); |
