diff options
| author | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-28 00:42:54 -0600 | 
|---|---|---|
| committer | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-28 00:42:54 -0600 | 
| commit | 6fe067d939ee51d96c62c6f38eb50058ba4f4a26 (patch) | |
| tree | 147c4cc5e4ae7ab02fa73cc2f8bb16335c9b7f62 | |
| parent | 6fd6c7af4675e97f9bcf677edf426b37998f9c13 (diff) | |
fixed problem with compiling wav pattern program
hg-commit-id: 5b445278c010
| -rw-r--r-- | music/pokeredwavptnvis/Console.cpp | 8 | 
1 files 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;
  }
 | 
