Skip to content

Commit

Permalink
ChipTuneEngineParser.h:
Browse files Browse the repository at this point in the history
* Hopefully fixes int / size_t incompatibility warning.
  • Loading branch information
razterizer committed Sep 30, 2024
1 parent 73dedfd commit b9d08be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChipTuneEngine_Internals/ChipTuneEngineParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ namespace audio
bool normalize = false;

iss >> filter_nr >> type >> op_type >> order >> cutoff >> bandwidth >> ripple >> normalize;
if (m_filter_args.size() < filter_nr + 1)
if (static_cast<int>(m_filter_args.size()) < filter_nr + 1)
m_filter_args.resize(filter_nr + 1);

auto str2type = [](const std::string& str)
Expand Down

0 comments on commit b9d08be

Please sign in to comment.