mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-21 02:01:03 +00:00
commit
e2c91c04da
2 changed files with 2 additions and 2 deletions
|
@ -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)) {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue