mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 06:25:37 +00:00
Common/FileSystem: uint32 -> u32
This commit is contained in:
parent
244302557f
commit
2ac8f7a6ac
|
@ -1396,7 +1396,7 @@ std::string GetProgramPath()
|
||||||
char* buffer = static_cast<char*>(std::realloc(nullptr, curSize));
|
char* buffer = static_cast<char*>(std::realloc(nullptr, curSize));
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
uint32 nChars = curSize - 1;
|
u32 nChars = curSize - 1;
|
||||||
int res = _NSGetExecutablePath(buffer, &nChars);
|
int res = _NSGetExecutablePath(buffer, &nChars);
|
||||||
if (res == 0)
|
if (res == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue