Changeset 841 – HoverRace

Changeset 841

Show
Ignore:
Timestamp:
01/31/10 00:37:25 (7 months ago)
Author:
ryan
Message:

Oops, unnecessary debug output that actually was not even necessary in the first place.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/updater/main.cpp

    r840 r841  
    6464    // Windows has no getopt() therefore we must do it by hand and as a result my implementation is not the best or the 
    6565    // cleanest but it does work 
    66     printf("argc %d\n", argc); 
    6766    for(int i = 1; i < argc; i++) { 
    68         printf("next arg is %s\n", argv[i]); 
    69         printf("after that is %s\n", argv[i + 1]); 
    7067        if(argv[i][0] == '-') { 
    7168            if(argv[i][1] == 'c') { 
     
    9592                waitExit(1); 
    9693            } else { 
    97                 printf("going to set our patch file to %s\n", argv[i + 1]); 
    9894                patchFile = argv[i + 1]; 
    99                 printf("patchFile is %s\n", patchFile.c_str()); 
    10095            } 
    10196