Core: Join some variable declarations and assignments

This commit is contained in:
Lioncash
2014-11-15 20:21:35 -05:00
parent 43b8749c60
commit 3eab75bc9c
4 changed files with 5 additions and 12 deletions

View File

@ -880,9 +880,8 @@ bool DSPAssembler::AssembleFile(const char *fname, int pass)
}
}
char *opcode = nullptr;
opcode = strtok(ptr, " ");
char *opcode_ext = nullptr;
char* opcode = strtok(ptr, " ");
char* opcode_ext = nullptr;
u32 params_count = 0;
u32 params_count_ext = 0;