From c5c223073672ffe262d1ac94c09b65f1d50bb518 Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Sat, 15 Jan 2022 23:05:59 -0500 Subject: [PATCH] remove system("pause") --- Slang/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Slang/Main.cpp b/Slang/Main.cpp index c7f2663..a8dfef2 100644 --- a/Slang/Main.cpp +++ b/Slang/Main.cpp @@ -658,7 +658,7 @@ int main(int argc, char* argv[]) else { LogWarning("No script provided! Please drag and drop .SLG file over interpreter executable file, or provide it's path as a command-line argument."); - system("pause"); + //system("pause"); exit(1); } #else @@ -682,7 +682,7 @@ int main(int argc, char* argv[]) scriptString << script.rdbuf(); #endif - system("pause"); + //system("pause"); parseSlang(scriptString.str());