Fixed bugs/typos and added the base for the SC Tracker toy

This commit is contained in:
2025-08-30 23:05:15 +02:00
parent 95c10f3747
commit da4ffe176c
7 changed files with 105 additions and 5 deletions
+3 -2
View File
@@ -4,6 +4,7 @@ const PAGES = {
SYNTHWAVE: 1,
TOYS: 2,
LICENSE: 3,
SC_TRACKER: 4
}
const CONSOLE_COLORS = {
red: "color: #FF0000;",
@@ -32,8 +33,8 @@ function randomInt(min, max) {
}
function randomBool(probablity) {
return Math.random() <= probablity
function randomBool(probability) {
return Math.random() <= probability
}