Modified an ase_exception call using printf style call.

This commit is contained in:
David Capello 2010-03-07 15:28:01 -02:00
parent d0514884de
commit 7a3b1e3369

View File

@ -49,7 +49,7 @@ class invalid_effect_exception : public ase_exception
{
public:
invalid_effect_exception(const char* effect_name) throw()
: ase_exception(std::string("Invalid effect specified: ") + effect_name) { }
: ase_exception("Invalid effect specified: %s", effect_name) { }
};
class invalid_imgtype_exception : public ase_exception