mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-07 08:05:23 +13:00
Updated Music Disassembler to support more advanced parameters
hg-commit-id: 0aba4647e4f6
This commit is contained in:
parent
6fe067d939
commit
4256973472
6 changed files with 203 additions and 62 deletions
|
|
@ -33,7 +33,7 @@ void Console::ErrorLn(const char* value)
|
|||
}
|
||||
|
||||
// Higher
|
||||
void Console::Ask(const char* question, char* answer)
|
||||
/*void Console::Ask(const char* question, char* answer)
|
||||
{
|
||||
Print(question);
|
||||
Get(answer);
|
||||
|
|
@ -42,13 +42,4 @@ void Console::Ask(const char* question, string& answer)
|
|||
{
|
||||
Print(question);
|
||||
Get(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;
|
||||
}
|
||||
}*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue