mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 20:20:40 +00:00
- fixed badly inherited exception subclass.
This commit is contained in:
parent
0f8e73ce77
commit
b73b59cf66
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public:
|
||||||
int Explode(unsigned char *out, unsigned int outsize, FileReader &in, unsigned int insize, int flags);
|
int Explode(unsigned char *out, unsigned int outsize, FileReader &in, unsigned int insize, int flags);
|
||||||
};
|
};
|
||||||
|
|
||||||
class CExplosionError : CRecoverableError
|
class CExplosionError : public CRecoverableError
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CExplosionError(const char *message) : CRecoverableError(message) {}
|
CExplosionError(const char *message) : CRecoverableError(message) {}
|
||||||
|
|
Loading…
Reference in a new issue