Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sid: Fix deprecation warning #172

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/sid/xs_sidplay2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,13 @@ bool xs_sidplayfp_init()
return false;
}

#if (LIBSIDPLAYFP_VERSION_MAJ << 8) + LIBSIDPLAYFP_VERSION_MIN < 0x020A
state.currBuilder->filter(xs_cfg.emulateFilters);
if (!state.currBuilder->getStatus()) {
AUDERR("reSID->filter(%d) failed.\n", xs_cfg.emulateFilters);
return false;
}
#endif

config.sidEmulation = state.currBuilder;

Expand Down Expand Up @@ -139,6 +141,13 @@ bool xs_sidplayfp_init()
return false;
}

#if (LIBSIDPLAYFP_VERSION_MAJ << 8) + LIBSIDPLAYFP_VERSION_MIN >= 0x020A
/* Call filter() after config() to have an effect */
state.currEng->filter(0, xs_cfg.emulateFilters);
state.currEng->filter(1, xs_cfg.emulateFilters);
state.currEng->filter(2, xs_cfg.emulateFilters);
#endif

/* Load ROMs */
VFSFile kernal_file("file://" SIDDATADIR "/sidplayfp/kernal", "r");
VFSFile basic_file("file://" SIDDATADIR "/sidplayfp/basic", "r");
Expand Down
Loading