schmouk / CppBMPLoader

An exhaustive BMP Loader, MIT-licensed, implemented for c11 and c20
MIT License
0 stars 0 forks source link

fix error codes transmission over BMP file loading steps #28

Closed schmouk closed 2 months ago

schmouk commented 2 months ago

It seems that first encountered error code is not transmitted along the loading steps. As an example : file_not_found.

schmouk commented 2 months ago

Completed. Validated. Added method failed to class ErrorStatus and use it now everywhere as needed. Added functions to get error messages (in English). Removed unnecessary protected attributes in BMPLoader base class, replaced with public accessor inlined methods.