Skip to content

Commit

Permalink
fix hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualPokePlayer committed Oct 27, 2024
1 parent 36aad39 commit 2cc777b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/DSi_DSP_UCodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,46 +44,46 @@ UCodeID IdentifyUCode(melonDS::DSi& dsi)

switch (crc)
{
case 0x4BC96778:
case 0x7867C94B:
Log(LogLevel::Debug, "Identified AAC Sound App DSP UCode\n");
return UCodeID::AAC_SOUND_APP;
case 0x48EFAF0C:
case 0x0CAFEF48:
Log(LogLevel::Debug, "Identified AAC SDK v0 DSP UCode\n");
return UCodeID::AAC_SDK_V0;
case 0x1B8B2ACD:
case 0xCD2A8B1B:
Log(LogLevel::Debug, "Identified Graphics SDK v0 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V0;
case 0xFE19EE7E:
case 0x7EEE19FE:
Log(LogLevel::Debug, "Identified G711 SDK v1 DSP UCode\n");
return UCodeID::G711_SDK_V1;
case 0x5BB72373:
case 0x7323B75B:
Log(LogLevel::Debug, "Identified Graphics SDK v1 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V1;
case 0xB6634BBD:
case 0xBD4B63B6:
Log(LogLevel::Debug, "Identified Graphics SDK v1 Patch DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V1_PATCH;
case 0xFFC65660:
case 0x6056C6FF:
Log(LogLevel::Debug, "Identified G711 SDK v2 DSP UCode\n");
return UCodeID::G711_SDK_V2;
case 0xA2B68B44:
case 0x448BB6A2:
Log(LogLevel::Debug, "Identified Graphics SDK v2 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V2;
case 0xAE1D282C:
case 0x2C281DAE:
Log(LogLevel::Debug, "Identified G711 SDK v3 DSP UCode\n");
return UCodeID::G711_SDK_V3;
case 0x33ECCA63:
case 0x63CAEC33:
Log(LogLevel::Debug, "Identified Graphics SDK v3 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V3;
case 0x947F1D2A:
case 0x2A1D7F94:
Log(LogLevel::Debug, "Identified G711 SDK v4 DSP UCode\n");
return UCodeID::G711_SDK_V4;
case 0x84EB5114:
case 0x1451EB84:
Log(LogLevel::Debug, "Identified Graphics SDK v4 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V4;
case 0x19B5BE4E:
case 0x4EBEB519:
Log(LogLevel::Debug, "Identified G711 SDK v5 DSP UCode\n");
return UCodeID::G711_SDK_V5;
case 0xC84F972C:
case 0x2C974FC8:
Log(LogLevel::Debug, "Identified Graphics SDK v5 DSP UCode\n");
return UCodeID::GRAPHICS_SDK_V5;
default:
Expand Down

0 comments on commit 2cc777b

Please sign in to comment.