Add RmlUi

This commit is contained in:
Zero
2026-06-10 16:12:51 +02:00
parent b1d5ea2253
commit d2b7ff5f43
1255 changed files with 270119 additions and 1362 deletions

View File

@@ -410,11 +410,7 @@ void BiomeSource::update()
//#define DEBUG_SEEDS 50
// 4J added - find a seed for this biomesource that matches certain criteria
#ifdef __PSVITA__
int64_t BiomeSource::findSeed(LevelType *generator, bool* pServerRunning) // MGH - added pRunning, so we can early out of this on Vita as it can take up to 60 secs
#else
int64_t BiomeSource::findSeed(LevelType *generator)
#endif
int64_t BiomeSource::findSeed(LevelType *generator, bool* pServerRunning)
{
int64_t bestSeed = 0;
@@ -469,11 +465,7 @@ int64_t BiomeSource::findSeed(LevelType *generator)
tryCount++;
mcprogress->progressStagePercentage( tryCount % 100 );
#ifdef __PSVITA__
} while (!matchFound && *pServerRunning);
#else
} while (!matchFound);
#endif
} while (!matchFound && (pServerRunning == nullptr || *pServerRunning));
// Clean up
delete pr;