[Scummvm-cvs-logs] SF.net SVN: scummvm: [29341] scummvm/trunk/backends/saves/default/ default-saves.cpp
david_corrales at users.sourceforge.net
david_corrales at users.sourceforge.net
Wed Oct 31 20:09:24 CET 2007
Revision: 29341
http://scummvm.svn.sourceforge.net/scummvm/?rev=29341&view=rev
Author: david_corrales
Date: 2007-10-31 12:09:23 -0700 (Wed, 31 Oct 2007)
Log Message:
-----------
Fixed a long due typo in the error messages inside the DefaultSaveFileManager.
Modified Paths:
--------------
scummvm/trunk/backends/saves/default/default-saves.cpp
Modified: scummvm/trunk/backends/saves/default/default-saves.cpp
===================================================================
--- scummvm/trunk/backends/saves/default/default-saves.cpp 2007-10-31 18:51:11 UTC (rev 29340)
+++ scummvm/trunk/backends/saves/default/default-saves.cpp 2007-10-31 19:09:23 UTC (rev 29341)
@@ -192,7 +192,7 @@
setError(SFM_DIR_NAMETOOLONG, Common::String("The path name is too long"));
break;
case ENOENT:
- setError(SFM_DIR_NOENT, Common::String("A component of the path path does not exist, or the path is an empty string"));
+ setError(SFM_DIR_NOENT, Common::String("A component of the path does not exist, or the path is an empty string"));
break;
case ENOTDIR:
setError(SFM_DIR_NOTDIR, Common::String("A component of the path prefix is not a directory"));
@@ -240,12 +240,12 @@
setError(SFM_DIR_ACCESS, Common::String("Search or write permission denied"));
if (errno == ENOENT)
- setError(SFM_DIR_NOENT, Common::String("A component of the path path does not exist, or the path is an empty string"));
+ setError(SFM_DIR_NOENT, Common::String("A component of the path does not exist, or the path is an empty string"));
return false;
} else {
return true;
- }
+ }
}
#endif // !defined(DISABLE_DEFAULT_SAVEFILEMANAGER)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list