mirror of https://github.com/PCSX2/pcsx2.git
Quick Linux compilation fixes.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2676 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
73fb883840
commit
b840fb9d7c
|
@ -299,6 +299,7 @@ set(pcsx2GuiSources
|
||||||
gui/Dialogs/AboutBoxDialog.cpp
|
gui/Dialogs/AboutBoxDialog.cpp
|
||||||
gui/Dialogs/AppConfigDialog.cpp
|
gui/Dialogs/AppConfigDialog.cpp
|
||||||
gui/Dialogs/AssertionDialog.cpp
|
gui/Dialogs/AssertionDialog.cpp
|
||||||
|
gui/Panels/BaseApplicableConfigPanel.cpp
|
||||||
gui/Dialogs/BaseConfigurationDialog.cpp
|
gui/Dialogs/BaseConfigurationDialog.cpp
|
||||||
gui/Dialogs/BaseConfigurationDialog.inl
|
gui/Dialogs/BaseConfigurationDialog.inl
|
||||||
gui/Dialogs/BiosSelectorDialog.cpp
|
gui/Dialogs/BiosSelectorDialog.cpp
|
||||||
|
@ -318,6 +319,8 @@ set(pcsx2GuiSources
|
||||||
gui/MainFrame.cpp
|
gui/MainFrame.cpp
|
||||||
gui/MainMenuClicks.cpp
|
gui/MainMenuClicks.cpp
|
||||||
gui/MemoryCardFile.cpp
|
gui/MemoryCardFile.cpp
|
||||||
|
gui/Panels/MemoryCardListPanel.cpp
|
||||||
|
gui/Panels/MemoryCardListView.h
|
||||||
gui/MessageBoxes.cpp
|
gui/MessageBoxes.cpp
|
||||||
gui/MSWstuff.cpp
|
gui/MSWstuff.cpp
|
||||||
gui/Panels/AudioPanel.cpp
|
gui/Panels/AudioPanel.cpp
|
||||||
|
|
|
@ -392,6 +392,7 @@
|
||||||
<Unit filename="../gui/MemoryCardFile.cpp" />
|
<Unit filename="../gui/MemoryCardFile.cpp" />
|
||||||
<Unit filename="../gui/MessageBoxes.cpp" />
|
<Unit filename="../gui/MessageBoxes.cpp" />
|
||||||
<Unit filename="../gui/Panels/AudioPanel.cpp" />
|
<Unit filename="../gui/Panels/AudioPanel.cpp" />
|
||||||
|
<Unit filename="../gui/Panels/BaseApplicableConfigPanel.cpp" />
|
||||||
<Unit filename="../gui/Panels/BaseConfigPanel.h" />
|
<Unit filename="../gui/Panels/BaseConfigPanel.h" />
|
||||||
<Unit filename="../gui/Panels/BiosSelectorPanel.cpp" />
|
<Unit filename="../gui/Panels/BiosSelectorPanel.cpp" />
|
||||||
<Unit filename="../gui/Panels/ConfigurationPanels.h" />
|
<Unit filename="../gui/Panels/ConfigurationPanels.h" />
|
||||||
|
@ -401,6 +402,8 @@
|
||||||
<Unit filename="../gui/Panels/GameFixesPanel.cpp" />
|
<Unit filename="../gui/Panels/GameFixesPanel.cpp" />
|
||||||
<Unit filename="../gui/Panels/LogOptionsPanels.cpp" />
|
<Unit filename="../gui/Panels/LogOptionsPanels.cpp" />
|
||||||
<Unit filename="../gui/Panels/LogOptionsPanels.h" />
|
<Unit filename="../gui/Panels/LogOptionsPanels.h" />
|
||||||
|
<Unit filename="../gui/Panels/MemoryCardListPanel.cpp" />
|
||||||
|
<Unit filename="../gui/Panels/MemoryCardListView.h" />
|
||||||
<Unit filename="../gui/Panels/MemoryCardsPanel.cpp" />
|
<Unit filename="../gui/Panels/MemoryCardsPanel.cpp" />
|
||||||
<Unit filename="../gui/Panels/MiscPanelStuff.cpp" />
|
<Unit filename="../gui/Panels/MiscPanelStuff.cpp" />
|
||||||
<Unit filename="../gui/Panels/PathsPanel.cpp" />
|
<Unit filename="../gui/Panels/PathsPanel.cpp" />
|
||||||
|
|
|
@ -44,7 +44,7 @@ _vifT bool analyzeIbit(u32* &data, int iBit) {
|
||||||
|
|
||||||
// Interprets packet
|
// Interprets packet
|
||||||
_vifT void vifTransferLoop(u32* &data) {
|
_vifT void vifTransferLoop(u32* &data) {
|
||||||
u32& tSize = vifX.tag.size;
|
//u32& tSize = vifX.tag.size;
|
||||||
u32& pSize = vifX.vifpacketsize;
|
u32& pSize = vifX.vifpacketsize;
|
||||||
int iBit = vifX.cmd >> 7;
|
int iBit = vifX.cmd >> 7;
|
||||||
|
|
||||||
|
|
|
@ -209,7 +209,11 @@ void Panels::DirPickerPanel::Apply()
|
||||||
|
|
||||||
wxDirName Panels::DirPickerPanel::GetPath() const
|
wxDirName Panels::DirPickerPanel::GetPath() const
|
||||||
{
|
{
|
||||||
return wxDirName( m_pickerCtrl ? m_pickerCtrl->GetPath() : wxEmptyString );
|
// The (x) ? y : z construct doesn't like y and z to be different types in gcc.
|
||||||
|
if (m_pickerCtrl)
|
||||||
|
return wxDirName(m_pickerCtrl->GetPath());
|
||||||
|
else
|
||||||
|
return wxDirName(wxEmptyString);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Panels::DirPickerPanel::SetPath( const wxString& newPath )
|
void Panels::DirPickerPanel::SetPath( const wxString& newPath )
|
||||||
|
|
Loading…
Reference in New Issue