mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
LLE-WIP: Indentation and small fixes to coding style.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2821 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -153,7 +153,7 @@ const char* pdname(u16 val)
|
||||
}
|
||||
|
||||
|
||||
char* gd_dis_params(gd_globals_t* gdg, opc_t* opc, u16 op1, u16 op2, char* strbuf)
|
||||
char* gd_dis_params(gd_globals_t* gdg, DSPOPCTemplate* opc, u16 op1, u16 op2, char* strbuf)
|
||||
{
|
||||
char* buf = strbuf;
|
||||
u32 val;
|
||||
@ -278,8 +278,8 @@ gd_globals_t* gd_init()
|
||||
|
||||
u16 gd_dis_get_opcode_size(gd_globals_t* gdg)
|
||||
{
|
||||
opc_t* opc = 0;
|
||||
opc_t* opc_ext = 0;
|
||||
DSPOPCTemplate* opc = 0;
|
||||
DSPOPCTemplate* opc_ext = 0;
|
||||
bool extended;
|
||||
|
||||
if ((gdg->pc & 0x7fff) >= 0x1000)
|
||||
@ -353,8 +353,8 @@ char* gd_dis_opcode(gd_globals_t* gdg)
|
||||
{
|
||||
u32 j;
|
||||
u32 op1, op2;
|
||||
opc_t* opc = NULL;
|
||||
opc_t* opc_ext = NULL;
|
||||
DSPOPCTemplate *opc = NULL;
|
||||
DSPOPCTemplate *opc_ext = NULL;
|
||||
u16 pc;
|
||||
char* buf = gdg->buffer;
|
||||
bool extended;
|
||||
|
Reference in New Issue
Block a user