diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/font.scm | 2 | ||||
-rw-r--r-- | examples/simple.scm | 2 | ||||
-rw-r--r-- | examples/tilemap.scm | 2 | ||||
-rw-r--r-- | examples/transition.scm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/font.scm b/examples/font.scm index d011899..8ce7976 100644 --- a/examples/font.scm +++ b/examples/font.scm @@ -17,7 +17,7 @@ (use-modules (sly agenda) (sly fps) - (sly color) + (sly render color) (sly font) (sly game) (sly input mouse) diff --git a/examples/simple.scm b/examples/simple.scm index cef0edb..0fd4503 100644 --- a/examples/simple.scm +++ b/examples/simple.scm @@ -23,7 +23,7 @@ (sly math transform) (sly vector) (sly window) - (sly color)) + (sly render color)) (load "common.scm") diff --git a/examples/tilemap.scm b/examples/tilemap.scm index 3c0d6f0..8aabdf9 100644 --- a/examples/tilemap.scm +++ b/examples/tilemap.scm @@ -28,7 +28,7 @@ (sly render scene) (sly signal) (sly camera) - (sly color) + (sly render color) (sly transition) (sly utils) (sly input keyboard)) diff --git a/examples/transition.scm b/examples/transition.scm index 1e18e0e..9370f00 100644 --- a/examples/transition.scm +++ b/examples/transition.scm @@ -19,7 +19,7 @@ (sly render sprite) (sly vector) (sly window) - (sly color) + (sly render color) (sly signal) (sly render texture) (sly transition)) |