Minor fixes

This commit is contained in:
SirLynix
2022-05-08 13:21:20 +02:00
parent 4794073b73
commit 41712a3f18
3 changed files with 9 additions and 8 deletions

View File

@@ -29,13 +29,13 @@ namespace Nz
{
switch (errCode)
{
case 0: return "no error";
case MP3D_E_PARAM: return "wrong parameters";
case MP3D_E_MEMORY: return "not enough memory";
case 0: return "no error";
case MP3D_E_PARAM: return "wrong parameters";
case MP3D_E_MEMORY: return "not enough memory";
case MP3D_E_IOERROR: return "I/O error";
case MP3D_E_USER: return "aborted";
case MP3D_E_DECODE: return "decoding error";
default: return "unknown error";
case MP3D_E_USER: return "aborted";
case MP3D_E_DECODE: return "decoding error";
default: return "unknown error";
}
}