aboutsummaryrefslogtreecommitdiff
path: root/examples/game/game.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-10 13:42:57 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-10 13:42:57 -0400
commita6d48e46c122594aa5d877c9f902484339103ea9 (patch)
tree9a4cb03af187f4f7742b8933a7c0069e17b4ddd1 /examples/game/game.tm
parent839abfc29425873f5610467b8facac44ad784e19 (diff)
Fixes for examples
Diffstat (limited to 'examples/game/game.tm')
-rw-r--r--examples/game/game.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game/game.tm b/examples/game/game.tm
index 81aed45f..86e4e01c 100644
--- a/examples/game/game.tm
+++ b/examples/game/game.tm
@@ -7,7 +7,7 @@ use ./world.tm
func main(map=(./map.txt)):
extern InitWindow:func(w:Int32, h:Int32, title:CString)
- InitWindow(1600, 900, "raylib [core] example - 2d camera")
+ InitWindow(1600, 900, CString("raylib [core] example - 2d camera"))
map_contents := map:read() or exit("Could not find the game map: $map")