From 9f5e3ad5b3eee426f3e32085ee90ebd900560475 Mon Sep 17 00:00:00 2001 From: Daniel Tam Date: Fri, 8 Sep 2017 00:25:06 -0500 Subject: [PATCH] Fixed typos in name change --- nCard0.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nCard0.cpp b/nCard0.cpp index 7fbb38f..853d804 100644 --- a/nCard0.cpp +++ b/nCard0.cpp @@ -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) MinGW g++ 5.3.1 (Ubuntu 16.04) 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: 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 << " -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): 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; + std::cout << std::endl << "Ex (1P): nCard0.exe -p1=\"G:\\card0.txt\" -c1=\"G:\\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); }