From 6fe067d939ee51d96c62c6f38eb50058ba4f4a26 Mon Sep 17 00:00:00 2001 From: KuroiIeWa5Da Date: Sat, 28 Jan 2012 00:42:54 -0600 Subject: fixed problem with compiling wav pattern program hg-commit-id: 5b445278c010 --- music/pokeredwavptnvis/Console.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- cgit v1.3.1-sl0p