luaconsole.cpp has been removed. Ascii driver is still sending text via stdin, but it is now ignored. So in ascii mode, commands are currently not interpreted.
This commit is contained in:
@@ -214,10 +214,7 @@ class Driver {
|
||||
|
||||
void handle_console_input() {
|
||||
read_console_recently_ = false;
|
||||
uint32_t promptlen;
|
||||
const char *promptdata;
|
||||
engw.get_console_prompt(&engw, &promptlen, &promptdata);
|
||||
std::u32string prompt = drvutil::utf8_to_utf32(std::string_view(promptdata, promptlen), nullptr);
|
||||
std::u32string prompt = drvutil::utf8_to_utf32(">", nullptr);
|
||||
readline_device_.set_prompt(prompt);
|
||||
while (true) {
|
||||
std::u32string cps = console_read();
|
||||
|
||||
Reference in New Issue
Block a user