Changeset - 1cd8562c653b
[Not reviewed]
default
0 2 0
ethanzonca - 17 years ago 2009-02-14 17:17:47

Fixed some stuff, but matt needs to set str global or something...
2 files changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/client/distren.c
Show inline comments
 
@@ -21,7 +21,7 @@
 

	
 
int main(int argc, char *argv[])
 
{
 
	str command;
 
  int command; // changed from str command... what was that for?
 
  //just prove that linking to the shared lib werkz
 
  genericfunc();
 
  execlisten();
src/server/distrend.c
Show inline comments
 
@@ -32,7 +32,9 @@ int main(int argc, char *argv[])
 

	
 
void blender()
 
{
 
	str = command;
 
	int command; /* where does this come from,should it be global? */
 

	
 
	int str = command;
 
	int first_frame;
 
	int last_frame;
 
	int pieces_per_frame; // for use of rendering piece so frames and stitching them together
 
@@ -42,7 +44,7 @@ void blender()
 

	
 
	current_frame = first_frame;
 

	
 
	str get_task();
 
	/* this errors... What is your intention here? :: str get_task(); */
 
	if (current_frame <= last_frame)
 
	{
 

	
0 comments (0 inline, 0 general)