summaryrefslogtreecommitdiff
path: root/specs/04.GameSetup.md
diff options
context:
space:
mode:
Diffstat (limited to 'specs/04.GameSetup.md')
-rw-r--r--specs/04.GameSetup.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/specs/04.GameSetup.md b/specs/04.GameSetup.md
index be69bc36..55b0f6b8 100644
--- a/specs/04.GameSetup.md
+++ b/specs/04.GameSetup.md
@@ -34,13 +34,13 @@ With the restaurant in this form
## Demand
-Check the [Demand section](05) for more info on what this means.
+Check the [Demand section](06.Demand.md) for more info on what this means.
Demand scale starts at 0%.
(from -50% to +50%)
Demand graph starts at offset 9 hours.
-$$\sin\left(3\sin\frac{\left(x+o\right)}{2}\right)+1$$
+$$\sin\left(3\sin\frac{\left(hour+offset\right)}{2}\right)+1$$
```c
-demand = sin(3*sin((x+offset)/2))+1
+demand = sin(3*sin((hour+offset)/2))+1
```