Fixed typos in name change

This commit is contained in:
2017-09-08 00:25:06 -05:00
parent cdf8168a61
commit 9f5e3ad5b3

View File

@@ -3,7 +3,7 @@ Info: Network based card0 changer. Will listen on a socket specified by user for
Compiler: MinGW g++ 6.3.0 (Windows) Compiler: MinGW g++ 6.3.0 (Windows)
MinGW g++ 5.3.1 (Ubuntu 16.04) MinGW g++ 5.3.1 (Ubuntu 16.04)
Flags: -std=c++11 -static-libgcc -static-libstdc++ -lws2_32 Flags: -std=c++11 -static-libgcc -static-libstdc++ -lws2_32
Run ex: NetCardZ.exe -p1="G:\card0.txt" -p2="H:\card0.txt" -c1="G:\check.txt" -c2="H:\check.txt" -p="4500" Run ex: nCard0.exe -p1="G:\card0.txt" -p2="H:\card0.txt" -c1="G:\check.txt" -c2="H:\check.txt" -p="4500"
TODO: TODO:
Add way to debug to log file Add way to debug to log file
@@ -301,8 +301,8 @@ void exampleMessage() // help menu
std::cout << " -c1\tLocation of player 1's check file" << std::endl; 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 << " -c2\tLocation of player 2's check file" << std::endl;
std::cout << " -p\tPort number to listen on (1-65535)" << std::endl; std::cout << " -p\tPort number to listen on (1-65535)" << std::endl;
std::cout << std::endl << "Ex (1P): NetCardZ.exe -p1=\"G:\\card0.txt\" -c1=\"G:\\check.txt\" -p=\"4500\"" << std::endl; std::cout << std::endl << "Ex (1P): nCard0.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; std::cout << "Ex (2P): nCard0.exe -p1=\"G:\\card0.txt\" -p2=\"H:\\card0.txt\" -c1=\"G:\\check.txt\" -c2=\"H:\\check.txt\" -p=\"4500\"" << std::endl;
exit(0); exit(0);
} }