Minor spelling fix.

This commit is contained in:
Rohit Nirmal 2013-07-13 23:07:22 -05:00
parent a44af9c6d2
commit c20218f9cd
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ bool Sys_GetPath(sysPath_t type, idStr &path) {
return true; 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.. // try next to the executable..
if (Sys_GetPath(PATH_EXE, path)) { if (Sys_GetPath(PATH_EXE, path)) {

View file

@ -343,7 +343,7 @@ bool Sys_GetPath(sysPath_t type, idStr &path) {
if (_stat(s.c_str(), &st) != -1 && st.st_mode & _S_IFDIR) if (_stat(s.c_str(), &st) != -1 && st.st_mode & _S_IFDIR)
return true; 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 // fallback to vanilla doom3 cd install