Hello, I wonder if it is possible to make windows-like error alerts in Allegro. I've found al_set_errno(); and al_get_errno(); functions in manula but I'm not sure how to use it. (Till now I used to report errors in console, but now I wanted to get rid of it).
For most errors, just putting a string into a dialog box will suffice, e.g.
If you want to get specific strings such as EWOULDBLOCK etc., you'd have to reference those strings manually.
Thanks for fast reply! It should do the job