SCI: Use Common::strlcpy instead of custom strlcpy-equivalent
This commit is contained in:
parent
02586ca220
commit
54a84b9001
1 changed files with 1 additions and 2 deletions
|
@ -697,8 +697,7 @@ ADDetectedGame SciMetaEngine::fallbackDetect(const FileMap &allFiles, const Comm
|
||||||
return ADDetectedGame();
|
return ADDetectedGame();
|
||||||
|
|
||||||
Common::String gameId = convertSierraGameId(sierraGameId, &s_fallbackDesc.flags, resMan);
|
Common::String gameId = convertSierraGameId(sierraGameId, &s_fallbackDesc.flags, resMan);
|
||||||
strncpy(s_fallbackGameIdBuf, gameId.c_str(), sizeof(s_fallbackGameIdBuf) - 1);
|
Common::strlcpy(s_fallbackGameIdBuf, gameId.c_str(), sizeof(s_fallbackGameIdBuf));
|
||||||
s_fallbackGameIdBuf[sizeof(s_fallbackGameIdBuf) - 1] = 0; // Make sure string is NULL terminated
|
|
||||||
s_fallbackDesc.gameId = s_fallbackGameIdBuf;
|
s_fallbackDesc.gameId = s_fallbackGameIdBuf;
|
||||||
|
|
||||||
// Try to determine the game language
|
// Try to determine the game language
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue