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:
XTra.KrazzY
2009-04-01 22:03:52 +00:00
parent 59c44bd13b
commit 9915533c3c
6 changed files with 1324 additions and 1322 deletions

View File

@ -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;