Changeset - 6e18d6692647
[Not reviewed]
default
0 1 0
ohnobinki@cdmlappy - 16 years ago 2009-07-09 00:06:29

capitalized #defines
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -32,7 +32,7 @@
 
#include "options.h"
 
#include <confuse.h>
 

	
 
#define max 100 // maximum number of stored jobs in memory, per job type (lux/blend). Eventually we can dump this data to disk, or atleast the remainder not in memory...
 
#define MAX_BLENDJOBS 100 // maximum number of stored jobs in memory, per job type (lux/blend). Eventually we can dump this data to disk, or atleast the remainder not in memory...
 

	
 
// Global Vars, try to cut down on these
 
int jobnum = 0; // The next job number to create in the queue
 
@@ -60,7 +60,7 @@ struct {
 
  int assigned_frames; // number of assigned frames (that are not yet completed) for stats/etc
 
  int total_frames; // how many frames are in the animation for stats/etc
 
  struct frameset **frameset;
 
} blendjob[max];
 
} blendjob[MAX_BLENDJOBS];
 

	
 

	
 
// Matt's code for framesets? I think that the int frame_num is obselete because it will be frameset[framenum]
0 comments (0 inline, 0 general)