From c20218f9cdf58bbd5657635aee9b597736377229 Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Sat, 13 Jul 2013 23:07:22 -0500 Subject: [PATCH] Minor spelling fix. --- neo/sys/linux/main.cpp | 2 +- neo/sys/win32/win_main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neo/sys/linux/main.cpp b/neo/sys/linux/main.cpp index c486613b..d4b52b08 100644 --- a/neo/sys/linux/main.cpp +++ b/neo/sys/linux/main.cpp @@ -60,7 +60,7 @@ bool Sys_GetPath(sysPath_t type, idStr &path) { return true; } - common->Warning("base path '" BUILD_DATADIR "' does not exits"); + common->Warning("base path '" BUILD_DATADIR "' does not exist"); // try next to the executable.. if (Sys_GetPath(PATH_EXE, path)) { diff --git a/neo/sys/win32/win_main.cpp b/neo/sys/win32/win_main.cpp index c7c113cb..0204e13b 100644 --- a/neo/sys/win32/win_main.cpp +++ b/neo/sys/win32/win_main.cpp @@ -343,7 +343,7 @@ bool Sys_GetPath(sysPath_t type, idStr &path) { if (_stat(s.c_str(), &st) != -1 && st.st_mode & _S_IFDIR) return true; - common->Warning("base path '%s' does not exits", s.c_str()); + common->Warning("base path '%s' does not exist", s.c_str()); } // fallback to vanilla doom3 cd install