mirror of https://github.com/PCSX2/pcsx2.git
Linux: added missing files, and switched from my own WindowDisbler hack to wx's built-in wxWindoweDisabler hack. :)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1844 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2b3d596d86
commit
556a811933
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||||
<CodeBlocks_workspace_file>
|
<CodeBlocks_workspace_file>
|
||||||
<Workspace title="pcsx2_suite_2008 workspace">
|
<Workspace title="pcsx2_suite_2008 workspace">
|
||||||
<Project filename="pcsx2/Linux/pcsx2.cbp">
|
<Project filename="pcsx2/Linux/pcsx2.cbp" active="1">
|
||||||
<Depends filename="common/build/x86emitter/x86emitter.cbp" />
|
<Depends filename="common/build/x86emitter/x86emitter.cbp" />
|
||||||
<Depends filename="common/build/Utilities/Utilities.cbp" />
|
<Depends filename="common/build/Utilities/Utilities.cbp" />
|
||||||
<Depends filename="3rdparty/zlib/zlib.cbp" />
|
<Depends filename="3rdparty/zlib/zlib.cbp" />
|
||||||
|
@ -22,6 +22,6 @@
|
||||||
<Project filename="plugins/onepad/Linux/OnePad.cbp" />
|
<Project filename="plugins/onepad/Linux/OnePad.cbp" />
|
||||||
<Project filename="plugins/zerogs/opengl/Linux/ZeroGS.cbp" />
|
<Project filename="plugins/zerogs/opengl/Linux/ZeroGS.cbp" />
|
||||||
<Project filename="tools/bin2cpp/bin2cpp.cbp" />
|
<Project filename="tools/bin2cpp/bin2cpp.cbp" />
|
||||||
<Project filename="plugins/spu2-x/src/Linux/SPU2-X.cbp" active="1" />
|
<Project filename="plugins/spu2-x/src/Linux/SPU2-X.cbp" />
|
||||||
</Workspace>
|
</Workspace>
|
||||||
</CodeBlocks_workspace_file>
|
</CodeBlocks_workspace_file>
|
||||||
|
|
|
@ -175,7 +175,7 @@ void __fastcall WriteFIFO_page_6(u32 mem, const mem128_t *value)
|
||||||
psHu64(0x6008) = value[1];
|
psHu64(0x6008) = value[1];
|
||||||
|
|
||||||
FreezeRegs(1);
|
FreezeRegs(1);
|
||||||
const uint count = mtgsThread->PrepDataPacket(GIF_PATH_3, nloop0_packet, 1);
|
mtgsThread->PrepDataPacket(GIF_PATH_3, nloop0_packet, 1);
|
||||||
u64* data = (u64*)mtgsThread->GetDataPacketPtr();
|
u64* data = (u64*)mtgsThread->GetDataPacketPtr();
|
||||||
data[0] = value[0];
|
data[0] = value[0];
|
||||||
data[1] = value[1];
|
data[1] = value[1];
|
||||||
|
|
|
@ -282,6 +282,7 @@
|
||||||
<Unit filename="../gui/Dialogs/LogOptionsDialog.h" />
|
<Unit filename="../gui/Dialogs/LogOptionsDialog.h" />
|
||||||
<Unit filename="../gui/Dialogs/ModalPopups.h" />
|
<Unit filename="../gui/Dialogs/ModalPopups.h" />
|
||||||
<Unit filename="../gui/Dialogs/PickUserModeDialog.cpp" />
|
<Unit filename="../gui/Dialogs/PickUserModeDialog.cpp" />
|
||||||
|
<Unit filename="../gui/FrameForGS.cpp" />
|
||||||
<Unit filename="../gui/HostGui.cpp" />
|
<Unit filename="../gui/HostGui.cpp" />
|
||||||
<Unit filename="../gui/IniInterface.cpp" />
|
<Unit filename="../gui/IniInterface.cpp" />
|
||||||
<Unit filename="../gui/IniInterface.h" />
|
<Unit filename="../gui/IniInterface.h" />
|
||||||
|
|
|
@ -1887,7 +1887,7 @@ static int __fastcall Vif1TransDirectHL(u32 *data)
|
||||||
FreezeRegs(1);
|
FreezeRegs(1);
|
||||||
// copy 16 bytes the fast way:
|
// copy 16 bytes the fast way:
|
||||||
const u64* src = (u64*)splittransfer[0];
|
const u64* src = (u64*)splittransfer[0];
|
||||||
const uint count = mtgsThread->PrepDataPacket(GIF_PATH_2, nloop0_packet, 1);
|
mtgsThread->PrepDataPacket(GIF_PATH_2, nloop0_packet, 1);
|
||||||
u64* dst = (u64*)mtgsThread->GetDataPacketPtr();
|
u64* dst = (u64*)mtgsThread->GetDataPacketPtr();
|
||||||
dst[0] = src[0];
|
dst[0] = src[0];
|
||||||
dst[1] = src[1];
|
dst[1] = src[1];
|
||||||
|
|
|
@ -416,7 +416,8 @@ void Panels::PluginSelectorPanel::OnConfigure_Clicked( wxCommandEvent& evt )
|
||||||
wxDynamicLibrary dynlib( (*m_FileList)[(int)m_ComponentBoxes.Get(pid).GetClientData(sel)] );
|
wxDynamicLibrary dynlib( (*m_FileList)[(int)m_ComponentBoxes.Get(pid).GetClientData(sel)] );
|
||||||
if( PluginConfigureFnptr configfunc = (PluginConfigureFnptr)dynlib.GetSymbol( tbl_PluginInfo[pid].GetShortname() + L"configure" ) )
|
if( PluginConfigureFnptr configfunc = (PluginConfigureFnptr)dynlib.GetSymbol( tbl_PluginInfo[pid].GetShortname() + L"configure" ) )
|
||||||
{
|
{
|
||||||
ScopedWindowDisable disabler( wxGetTopLevelParent( this ) );
|
//ScopedWindowDisable disabler( wxGetTopLevelParent( this ) );
|
||||||
|
wxWindowDisabler disabler;
|
||||||
configfunc();
|
configfunc();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue