diff --git a/src/shell/shell_batch.cpp b/src/shell/shell_batch.cpp index 48c571f7..fdec91ba 100644 --- a/src/shell/shell_batch.cpp +++ b/src/shell/shell_batch.cpp @@ -32,7 +32,6 @@ BatchFile::BatchFile(DOS_Shell * host,char * name, char * cmd_line) { //TODO Come up with something better E_Exit("SHELL:Can't open BatchFile"); } - line_count=0; }; BatchFile::~BatchFile() { diff --git a/src/shell/shell_inc.h b/src/shell/shell_inc.h index a5f59142..2396b013 100644 --- a/src/shell/shell_inc.h +++ b/src/shell/shell_inc.h @@ -40,10 +40,6 @@ public: bool ReadLine(char * line); bool Goto(char * where); Bit16u file_handle; - Bit32u line_count; - char * cmd_words[CMD_MAXCMDS]; - char cmd_buffer[128]; //Command line can only be 128 chars - Bit32u cmd_count; bool echo; DOS_Shell * shell; BatchFile * prev;