From b37250492acfa64c00d309a21e9cedf8ed1a1d3e Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Tue, 30 Mar 2021 18:29:40 +0200 Subject: [PATCH] Don't ask to run as administrator in filefuncs.cpp. --- src/etc/filefuncs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/filefuncs.cpp b/src/etc/filefuncs.cpp index 7dc36f1..702221e 100644 --- a/src/etc/filefuncs.cpp +++ b/src/etc/filefuncs.cpp @@ -10,7 +10,7 @@ string getFileContent(const string& file) if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) { fullinput.append(lineinput + "\n"); } else { - cout << "Could not open the file(s), please run as administrator." << endl; + cout << "Could not open the file(s)." << endl; exit(EXIT_FAILURE); } filetoParse.close();