mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
Use spaces for vertical alignment
This commit is contained in:
parent
e25796f0d0
commit
d0c9d7c0ae
96 changed files with 2990 additions and 2992 deletions
|
@ -94,7 +94,7 @@ struct GLFragmentDecompilerThread : public ThreadBase
|
||||||
u32 abs : 1;
|
u32 abs : 1;
|
||||||
u32 addr_reg : 11;
|
u32 addr_reg : 11;
|
||||||
u32 use_index_reg : 1;
|
u32 use_index_reg : 1;
|
||||||
u32 perspective_corr: 1;
|
u32 perspective_corr : 1;
|
||||||
};
|
};
|
||||||
} src2;
|
} src2;
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ public:
|
||||||
{
|
{
|
||||||
if (event.LeftDown()) MouseHandlerBase::Button(CELL_MOUSE_BUTTON_1, 1);
|
if (event.LeftDown()) MouseHandlerBase::Button(CELL_MOUSE_BUTTON_1, 1);
|
||||||
else if (event.RightDown()) MouseHandlerBase::Button(CELL_MOUSE_BUTTON_2, 1);
|
else if (event.RightDown()) MouseHandlerBase::Button(CELL_MOUSE_BUTTON_2, 1);
|
||||||
else if (event.MiddleDown())MouseHandlerBase::Button(CELL_MOUSE_BUTTON_3, 1);
|
else if (event.MiddleDown()) MouseHandlerBase::Button(CELL_MOUSE_BUTTON_3, 1);
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
virtual void MouseButtonUp(wxMouseEvent& event)
|
virtual void MouseButtonUp(wxMouseEvent& event)
|
||||||
|
|
|
@ -79,10 +79,8 @@ enum
|
||||||
CELL_ADEC_ERROR_M4AAC_INVERSE_QUANTIZATION_FAILED = 0x80612438,
|
CELL_ADEC_ERROR_M4AAC_INVERSE_QUANTIZATION_FAILED = 0x80612438,
|
||||||
CELL_ADEC_ERROR_M4AAC_GET_CB_MAP_FAILED = 0x80612439,
|
CELL_ADEC_ERROR_M4AAC_GET_CB_MAP_FAILED = 0x80612439,
|
||||||
CELL_ADEC_ERROR_M4AAC_GET_PULSE_FAILED = 0x8061243a,
|
CELL_ADEC_ERROR_M4AAC_GET_PULSE_FAILED = 0x8061243a,
|
||||||
CELL_ADEC_ERROR_M4AAC_MONO_MIXDOWN_ELEMENT_IS_NOT_SUPPORTED
|
CELL_ADEC_ERROR_M4AAC_MONO_MIXDOWN_ELEMENT_IS_NOT_SUPPORTED = 0x8061243b,
|
||||||
= 0x8061243b,
|
CELL_ADEC_ERROR_M4AAC_STEREO_MIXDOWN_ELEMENT_IS_NOT_SUPPORTED = 0x8061243c,
|
||||||
CELL_ADEC_ERROR_M4AAC_STEREO_MIXDOWN_ELEMENT_IS_NOT_SUPPORTED
|
|
||||||
= 0x8061243c,
|
|
||||||
|
|
||||||
CELL_ADEC_ERROR_M4AAC_SBR_CH_OVERFLOW = 0x80612480,
|
CELL_ADEC_ERROR_M4AAC_SBR_CH_OVERFLOW = 0x80612480,
|
||||||
CELL_ADEC_ERROR_M4AAC_SBR_NOSYNCH = 0x80612481,
|
CELL_ADEC_ERROR_M4AAC_SBR_NOSYNCH = 0x80612481,
|
||||||
|
|
|
@ -257,6 +257,7 @@ int cellPngDecSetParameter(u32 mainHandle, u32 subHandle, const mem_ptr_t<CellPn
|
||||||
current_outParam.outputWidth = current_info.imageWidth;
|
current_outParam.outputWidth = current_info.imageWidth;
|
||||||
current_outParam.outputHeight = current_info.imageHeight;
|
current_outParam.outputHeight = current_info.imageHeight;
|
||||||
current_outParam.outputColorSpace = inParam->outputColorSpace;
|
current_outParam.outputColorSpace = inParam->outputColorSpace;
|
||||||
|
|
||||||
switch (current_outParam.outputColorSpace)
|
switch (current_outParam.outputColorSpace)
|
||||||
{
|
{
|
||||||
case CELL_PNGDEC_PALETTE:
|
case CELL_PNGDEC_PALETTE:
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
enum
|
enum //libmixer Error Codes
|
||||||
{
|
{
|
||||||
//libmixer Error Codes
|
|
||||||
CELL_LIBMIXER_ERROR_NOT_INITIALIZED = 0x80310002,
|
CELL_LIBMIXER_ERROR_NOT_INITIALIZED = 0x80310002,
|
||||||
CELL_LIBMIXER_ERROR_INVALID_PARAMATER = 0x80310003,
|
CELL_LIBMIXER_ERROR_INVALID_PARAMATER = 0x80310003,
|
||||||
CELL_LIBMIXER_ERROR_NO_MEMORY = 0x80310005,
|
CELL_LIBMIXER_ERROR_NO_MEMORY = 0x80310005,
|
||||||
|
|
|
@ -67,7 +67,7 @@ CompilerELF::CompilerELF(wxWindow* parent)
|
||||||
m_app_connector.Connect(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
m_app_connector.Connect(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
||||||
m_app_connector.Connect(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
m_app_connector.Connect(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
||||||
m_app_connector.Connect(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
m_app_connector.Connect(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
||||||
m_app_connector.Connect(wxEVT_SCROLLWIN_THUMBRELEASE,wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
m_app_connector.Connect(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(CompilerELF::OnScroll), (wxObject*)0, this);
|
||||||
|
|
||||||
m_app_connector.Connect(asm_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(CompilerELF::MouseWheel), (wxObject*)0, this);
|
m_app_connector.Connect(asm_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(CompilerELF::MouseWheel), (wxObject*)0, this);
|
||||||
m_app_connector.Connect(hex_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(CompilerELF::MouseWheel), (wxObject*)0, this);
|
m_app_connector.Connect(hex_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(CompilerELF::MouseWheel), (wxObject*)0, this);
|
||||||
|
|
|
@ -84,7 +84,7 @@ InterpreterDisAsmFrame::InterpreterDisAsmFrame(wxWindow* parent)
|
||||||
Connect(m_btn_pause->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(InterpreterDisAsmFrame::DoPause));
|
Connect(m_btn_pause->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(InterpreterDisAsmFrame::DoPause));
|
||||||
Connect(m_list->GetId(), wxEVT_COMMAND_LIST_KEY_DOWN, wxListEventHandler(InterpreterDisAsmFrame::InstrKey));
|
Connect(m_list->GetId(), wxEVT_COMMAND_LIST_KEY_DOWN, wxListEventHandler(InterpreterDisAsmFrame::InstrKey));
|
||||||
Connect(m_list->GetId(), wxEVT_COMMAND_LIST_ITEM_ACTIVATED, wxListEventHandler(InterpreterDisAsmFrame::DClick));
|
Connect(m_list->GetId(), wxEVT_COMMAND_LIST_ITEM_ACTIVATED, wxListEventHandler(InterpreterDisAsmFrame::DClick));
|
||||||
Connect(m_choice_units->GetId(),wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler(InterpreterDisAsmFrame::OnSelectUnit));
|
Connect(m_choice_units->GetId(), wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler(InterpreterDisAsmFrame::OnSelectUnit));
|
||||||
Connect(wxEVT_SIZE, wxSizeEventHandler(InterpreterDisAsmFrame::OnResize));
|
Connect(wxEVT_SIZE, wxSizeEventHandler(InterpreterDisAsmFrame::OnResize));
|
||||||
m_app_connector.Connect(m_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(InterpreterDisAsmFrame::MouseWheel), (wxObject*)0, this);
|
m_app_connector.Connect(m_list->GetId(), wxEVT_MOUSEWHEEL, wxMouseEventHandler(InterpreterDisAsmFrame::MouseWheel), (wxObject*)0, this);
|
||||||
m_app_connector.Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(InterpreterDisAsmFrame::OnKeyDown), (wxObject*)0, this);
|
m_app_connector.Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(InterpreterDisAsmFrame::OnKeyDown), (wxObject*)0, this);
|
||||||
|
|
|
@ -646,7 +646,7 @@ void MainFrame::ConfigPad(wxCommandEvent& WXUNUSED(event))
|
||||||
cbox_pad_square->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_square->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_cross->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_cross->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_circle->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_circle->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_triangle->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_triangle->Append(wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_r1->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_r1->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_l1->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_l1->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
cbox_pad_r2->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
cbox_pad_r2->Append (wxString::Format("%c", static_cast<char>(i) ) );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue