mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-09-09 12:24:08 -04:00
xam: use std::string for XamContentCreateEx directory
I hate strings
This commit is contained in:
@@ -241,13 +241,11 @@ SWA_API uint32_t XamContentCreateEx(DWORD dwUserIndex, LPCSTR szRootName, const
|
|||||||
|
|
||||||
if (!exists)
|
if (!exists)
|
||||||
{
|
{
|
||||||
const char* root = "";
|
std::string root = "";
|
||||||
|
|
||||||
if (pContentData->dwContentType == XCONTENTTYPE_SAVEDATA)
|
if (pContentData->dwContentType == XCONTENTTYPE_SAVEDATA)
|
||||||
{
|
{
|
||||||
// auuughh
|
root = Config::GetSavePath().string();
|
||||||
auto savePath = Config::GetSavePath().string();
|
|
||||||
root = new char[savePath.size() + 1];
|
|
||||||
strcpy(const_cast<char*>(root), savePath.c_str());
|
|
||||||
}
|
}
|
||||||
else if (pContentData->dwContentType == XCONTENTTYPE_DLC)
|
else if (pContentData->dwContentType == XCONTENTTYPE_DLC)
|
||||||
{
|
{
|
||||||
@@ -259,7 +257,7 @@ SWA_API uint32_t XamContentCreateEx(DWORD dwUserIndex, LPCSTR szRootName, const
|
|||||||
}
|
}
|
||||||
|
|
||||||
XamRegisterContent(*pContentData, root);
|
XamRegisterContent(*pContentData, root);
|
||||||
CreateDirectoryA(root, nullptr);
|
CreateDirectoryA(root.c_str(), nullptr);
|
||||||
XamRootCreate(szRootName, root);
|
XamRootCreate(szRootName, root);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user