Skip to content

Commit

Permalink
int->int32
Browse files Browse the repository at this point in the history
  • Loading branch information
Daekesh committed Oct 20, 2024
1 parent 380c094 commit 2f83704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/GFPakExporter/Private/AuroraExporterSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ FString FAuroraContentDLCExporterConfig::GetDefaultDLCNameBasedOnContent(const F
{
TArray<FString> PathArray;
int32 Min = FMath::Min(Path1.Num(), Path2.Num());
for (int i = 0; i < Min; i++)
for (int32 i = 0; i < Min; i++)
{
if (Path1[i] == Path2[i])
{
Expand Down

0 comments on commit 2f83704

Please sign in to comment.