microVU/Linux: Since __mVUdumpProgram is of type microVUx, vuIndex is already defined, and shouldn't be redefined. Fixes Linux compilation.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1293 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-05-30 11:50:05 +00:00
parent cf1f7eda8c
commit ccd89d199b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ microVUx(void) __mVUdumpProgram(int progIndex) {
int bBranch = mVUbranch;
int bCode = mVU->code;
int bPC = iPC;
int vuIndex = (mVU == &microVU1) ? 1 : 0;
vuIndex = (mVU == &microVU1) ? 1 : 0;
mVUbranch = 0;
sprintf(str, "%s\\microVU%d prog - %02d.html", LOGS_DIR, vuIndex, progIndex);