summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-06-26 17:18:44 -0600
committerGitHub <noreply@github.com>2025-06-26 17:18:44 -0600
commitc0b4fa7889e94267f198cf061124494d8fd3d5fe (patch)
treebe7091a9d3794581f4a94160f37bcc71d0ff3464
parent47975c2c8de29b568e586a65b62c78f2c2551b04 (diff)
Update update_objects.c
-rw-r--r--src/update_objects.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update_objects.c b/src/update_objects.c
index 39d0b4508..b3796ed92 100644
--- a/src/update_objects.c
+++ b/src/update_objects.c
@@ -3265,11 +3265,11 @@ u8 gen_random_item(s16 rank, s16 isCpu) {
distributionTable = &grandPrixHumanProbabilityTable[rank];
verify_probability_table("Human", distributionTable, rank);
break;
- case EASY_CPU_TABLE:
+ case CPU_TABLE:
distributionTable = &grandPrixEasyCPUProbabilityTable[rank];
verify_probability_table("CPU", distributionTable, rank);
break;
- case NORMAL_CPU_TABLE:
+ case HARD_CPU_TABLE:
distributionTable = &grandPrixNormalCPUProbabilityTable[rank];
verify_probability_table("Hard CPU", distributionTable, rank);
break;