Skip to content

Commit d978c64

Browse files
committed
BUG fix
1 parent 8a1ffd2 commit d978c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghost_terminal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ int main(){
1818
wstring commad;
1919
SSTP_ret_t Result;
2020
wcout << ">> ";
21-
while (wcin >> commad && commad != L"exit") {
21+
while (getline(wcin,commad) && commad != L"exit") {
2222
if(!linker.Has_Event(L"ShioriEcho"))
2323
wcout << "Event Has_Event or ShioriEcho Not define.\n";
2424
linker.NOTYFY({ { L"Event", L"ShioriEcho" },

0 commit comments

Comments
 (0)