Fix bug in d_incbin() (found by ggn). :-)

This commit is contained in:
Shamus Hammons 2023-03-20 13:22:25 -05:00
parent a529af0a2b
commit bdae4ca0d4
2 changed files with 2 additions and 2 deletions

View File

@ -635,7 +635,7 @@ allright:
return error("expected comma after incbin filename"); return error("expected comma after incbin filename");
} }
if (tok != EOL) if (*tok != EOL)
{ {
if (*tok != ',') if (*tok != ',')
{ {

View File

@ -15,6 +15,6 @@
#define MAJOR 2 // Major version number #define MAJOR 2 // Major version number
#define MINOR 2 // Minor version number #define MINOR 2 // Minor version number
#define PATCH 15 // Patch release number #define PATCH 16 // Patch release number
#endif // __VERSION_H__ #endif // __VERSION_H__