fix silly typo when using -m with dsptool
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3853 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
d09b777de8
commit
3d28eb5dbc
Source/Core/DSPCore/Src
|
@ -170,9 +170,9 @@ void CodesToHeader(const std::vector<u16> *codes, const std::vector<std::string>
|
||||||
}
|
}
|
||||||
header.append("};\n\n");
|
header.append("};\n\n");
|
||||||
header.append("#ifndef _MSCVER\n");
|
header.append("#ifndef _MSCVER\n");
|
||||||
header.append("const unsigned short dsp_ucode[NUM_UCODES][0x1000] = {\n");
|
header.append("const unsigned short dsp_code[NUM_UCODES][0x1000] = {\n");
|
||||||
header.append("#else\n");
|
header.append("#else\n");
|
||||||
header.append("const unsigned short dsp_ucode[NUM_UCODES][0x1000] __attribute__ ((aligned (64))) = {\n");
|
header.append("const unsigned short dsp_code[NUM_UCODES][0x1000] __attribute__ ((aligned (64))) = {\n");
|
||||||
header.append("#endif\n\n");
|
header.append("#endif\n\n");
|
||||||
|
|
||||||
for(int i = 0; i < numCodes; i++) {
|
for(int i = 0; i < numCodes; i++) {
|
||||||
|
|
Loading…
Reference in New Issue