Skip to content

Commit

Permalink
Fix clang compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
loveemu committed Mar 25, 2015
1 parent ba1f3ea commit 2d5ace4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NatsumeDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ bool NatsumeDriver::ValidateDriverParams(const uint8_t * rom, size_t rom_size, c
return false;
}
uint32_t ofs_sound_work = params.at("ofs_sound_work").getInteger();
if (params.at("ofs_sound_work").type() != VgmDriverParamType::INTEGER)
if (params.at("ofs_sound_work").type() != INTEGER)
{
sprintf(str, "ofs_sound_work must be an integer");
m_message = str;
Expand Down

0 comments on commit 2d5ace4

Please sign in to comment.