Fixup some C++ comments

This commit is contained in:
twinaphex 2015-03-20 17:59:10 +01:00
parent cb41ee6186
commit bdb8475647
1 changed files with 2 additions and 2 deletions

View File

@ -166,14 +166,14 @@ bool read_compressed_file(const char * path, void **buf,
}
}
//We split carchive path and relative path:
/* We split carchive path and relative path: */
strlcpy(archive_path, path, sizeof(archive_path));
archive_found = (char*)strchr(archive_path,'#');
rarch_assert(archive_found != NULL);
//We assure that there is something after the '#' symbol
/* We assure that there is something after the '#' symbol. */
if (strlen(archive_found) <= 1)
{
/*