Updated naming in program

This commit is contained in:
2017-09-07 17:47:44 -05:00
parent 53cc2a137e
commit 87bbd874fb
2 changed files with 4 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
/*
Info: Network based card0 changer. Will listen on a socket specified by user for a card0 information.
Compiler: MinGW g++ 6.3.0 (Windows)
MinGW g++ 5.3.1 (Ubuntu 16.04)
Flags: -std=c++11 -static-libgcc -static-libstdc++ -lws2_32
Run ex: cardnet.exe -p1="G:\card0.txt" -p2="H:\card0.txt" -c1="G:\check.txt" -c2="H:\check.txt" -p="4500"
Run ex: NetCardZ.exe -p1="G:\card0.txt" -p2="H:\card0.txt" -c1="G:\check.txt" -c2="H:\check.txt" -p="4500"
TODO:
Fix extra buffer character (maybe, it occurs in telnet)
@@ -308,8 +309,8 @@ void exampleMessage() // help menu
std::cout << " -c1\tLocation of player 1's check file" << std::endl;
std::cout << " -c2\tLocation of player 2's check file" << std::endl;
std::cout << " -p\tPort number to listen on (1-65535)" << std::endl;
std::cout << std::endl << "Ex (1P): cardnet.exe -p1=\"G:\\card0.txt\" -c1=\"G:\\check.txt\" -p=\"4500\"" << std::endl;
std::cout << "Ex (2P): cardnet.exe -p1=\"G:\\card0.txt\" -p2=\"H:\\card0.txt\" -c1=\"G:\\check.txt\" -c2=\"H:\\check.txt\" -p=\"4500\"" << std::endl;
std::cout << std::endl << "Ex (1P): NetCardZ.exe -p1=\"G:\\card0.txt\" -c1=\"G:\\check.txt\" -p=\"4500\"" << std::endl;
std::cout << "Ex (2P): NetCardZ.exe -p1=\"G:\\card0.txt\" -p2=\"H:\\card0.txt\" -c1=\"G:\\check.txt\" -c2=\"H:\\check.txt\" -p=\"4500\"" << std::endl;
exit(0);
}

Binary file not shown.