dsp: renamed R09 to WR1 in some tests, removed unused code in DSPTables.cpp, added showing of origin file in dspspy (please fix if [runningUcode - 1] is wrong)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3417 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-06-13 04:55:58 +00:00
parent f8a221dea2
commit ff7f9020fe
7 changed files with 46 additions and 37 deletions

View File

@ -356,7 +356,7 @@ int main(int argc, const char *argv[])
}
CodesToHeader(codes, lines, output_header_name.c_str(), header);
CodesToHeader(codes, files, lines, output_header_name.c_str(), header);
File::WriteStringToFile(true, header, (output_header_name + ".h").c_str());
delete[] codes;
@ -379,7 +379,7 @@ int main(int argc, const char *argv[])
if (!output_header_name.empty())
{
std::string header;
CodeToHeader(code, output_header_name.c_str(), header);
CodeToHeader(code, input_name, output_header_name.c_str(), header);
File::WriteStringToFile(true, header, (output_header_name + ".h").c_str());
}
}