- fixed badly inherited exception subclass.

This commit is contained in:
Christoph Oelckers 2020-12-27 14:24:22 +01:00
parent 0f8e73ce77
commit b73b59cf66
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public:
int Explode(unsigned char *out, unsigned int outsize, FileReader &in, unsigned int insize, int flags);
};
class CExplosionError : CRecoverableError
class CExplosionError : public CRecoverableError
{
public:
CExplosionError(const char *message) : CRecoverableError(message) {}