mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-23 23:13:30 +00:00
Fix sign mismatch
This commit is contained in:
parent
2e86274680
commit
5f14db33f9
@ -74,7 +74,7 @@ void CPropertyNameGenerator::Generate(const SPropertyNameGenerationParameters& r
|
|||||||
Warmup();
|
Warmup();
|
||||||
|
|
||||||
// Calculate the number of steps involved in this task.
|
// Calculate the number of steps involved in this task.
|
||||||
const int kNumWords = mWords.size();
|
const size_t kNumWords = mWords.size();
|
||||||
const int kMaxWords = rkParams.MaxWords;
|
const int kMaxWords = rkParams.MaxWords;
|
||||||
TotalTests = 1;
|
TotalTests = 1;
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ void CPropertyNameGenerator::GenerateTask(const SPropertyNameGenerationParameter
|
|||||||
SPropertyNameGenerationTaskParameters taskParams,
|
SPropertyNameGenerationTaskParameters taskParams,
|
||||||
IProgressNotifier* pProgress)
|
IProgressNotifier* pProgress)
|
||||||
{
|
{
|
||||||
const int kNumWords = mWords.size();
|
const size_t kNumWords = mWords.size();
|
||||||
const int kMaxWords = rkParams.MaxWords;
|
const int kMaxWords = rkParams.MaxWords;
|
||||||
|
|
||||||
// Configure params needed to run the name generation!
|
// Configure params needed to run the name generation!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user