- Changed Lemon so that it always writes the header. It still kept recompiling

the grammar over and over again once it had been changed locally.


SVN r851 (trunk)
This commit is contained in:
Christoph Oelckers 2008-03-25 10:42:02 +00:00
parent 14533f867d
commit 6eca1036c3
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,6 @@
March 25, 2008 (Changes by Graf Zahl) March 25, 2008 (Changes by Graf Zahl)
- Changed Lemon so that it always writes the header. It still kept recompiling
the grammar over and over again once it had been changed locally.
- Fixed: ANIMATED allowed animations between different texture types. - Fixed: ANIMATED allowed animations between different texture types.
- Added a debuganimated CCMD that can be used to output some information - Added a debuganimated CCMD that can be used to output some information
if a WAD shows broken animations. if a WAD shows broken animations.

View File

@ -3968,7 +3968,8 @@ struct lemon *lemp;
fclose(in); fclose(in);
if( i==lemp->nterminal ){ if( i==lemp->nterminal ){
/* No change in the file. Don't rewrite it. */ /* No change in the file. Don't rewrite it. */
return; /* (not the best idea if you use make tools that check the date! */
/*return;*/
} }
} }
out = file_open(lemp,".h","wb"); out = file_open(lemp,".h","wb");