GRAPHICS/SDL: add ifdefs for disabling scalers

This commit is contained in:
Eric Culp 2012-06-08 13:18:57 -04:00 committed by Filippos Karapetis
parent dcfbf9da7f
commit 8030b7879c
5 changed files with 28 additions and 4 deletions

View file

@ -163,9 +163,13 @@ public:
// Scaler plugins
LINK_PLUGIN(NORMAL)
#ifdef USE_SCALERS
#ifdef USE_HQ_SCALERS
LINK_PLUGIN(HQ)
#endif
LINK_PLUGIN(SAI)
LINK_PLUGIN(DOTMATRIX)
#endif
return pl;
}