mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-12 01:31:58 +00:00
Replace MSVC __debugbreak with cross-compiler DEBUG_BREAK macro. (#1540)
This commit is contained in:
@@ -15,7 +15,7 @@ WeighedRandomItem *WeighedRandom::getRandomItem(Random *random, vector<WeighedRa
|
||||
{
|
||||
if (totalWeight <= 0)
|
||||
{
|
||||
__debugbreak();
|
||||
DEBUG_BREAK();
|
||||
}
|
||||
|
||||
int selection = random->nextInt(totalWeight);
|
||||
@@ -50,7 +50,7 @@ WeighedRandomItem *WeighedRandom::getRandomItem(Random *random, WeighedRandomIte
|
||||
{
|
||||
if (totalWeight <= 0)
|
||||
{
|
||||
__debugbreak();
|
||||
DEBUG_BREAK();
|
||||
}
|
||||
|
||||
int selection = random->nextInt(totalWeight);
|
||||
|
||||
Reference in New Issue
Block a user