mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-26 08:30:05 +00:00
core: fix dsp_dsp.cpp warning on MSVC
This commit is contained in:
parent
cb1ed3fc0a
commit
ab30b86f27
@ -139,7 +139,7 @@ static void LoadComponent(Service::Interface* self) {
|
||||
Memory::ReadBlock(buffer, component_data.data(), component_data.size());
|
||||
|
||||
LOG_INFO(Service_DSP, "Firmware hash: %#" PRIx64,
|
||||
Common::ComputeHash64(component_data.data(), component_data.size()));
|
||||
Common::ComputeHash64(component_data.data(), static_cast<int>(component_data.size())));
|
||||
// Some versions of the firmware have the location of DSP structures listed here.
|
||||
ASSERT(size > 0x37C);
|
||||
LOG_INFO(Service_DSP, "Structures hash: %#" PRIx64,
|
||||
|
Loading…
Reference in New Issue
Block a user