diff --git a/music/pokeredwavptnvis/Console.cpp b/music/pokeredwavptnvis/Console.cpp index 84d5fab1..9bac7b1f 100644 --- a/music/pokeredwavptnvis/Console.cpp +++ b/music/pokeredwavptnvis/Console.cpp @@ -47,8 +47,8 @@ void Console::Ask(const char* question, string& answer) // Better Error Handling int Console::atoi_ex(const char* input, bool supress) { - int convInp = atoi(input); - if((supress == false) && (convInp == 0)) - PrintLn("Warning: the converted integer input is 0, this may not be what you intended"); - return convInp; + //int convInp = atoi(input); + //if((supress == false) && (convInp == 0)) + // PrintLn("Warning: the converted integer input is 0, this may not be what you intended"); + // return convInp; }