diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-10-31 13:15:37 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-10-31 13:28:29 -0400 |
| commit | 4d9044c6596cdf99d323c4dd1fcdf0e0d7c8549a (patch) | |
| tree | 1fe4a53f449e692727cfc5bd584e31801dd3b297 /graphics | |
| parent | dungeon: remove unused rand_chacha (diff) | |
| download | DungeonCrawl-4d9044c6596cdf99d323c4dd1fcdf0e0d7c8549a.tar.gz DungeonCrawl-4d9044c6596cdf99d323c4dd1fcdf0e0d7c8549a.tar.bz2 DungeonCrawl-4d9044c6596cdf99d323c4dd1fcdf0e0d7c8549a.zip | |
Add SDL feature flag (fixes wayland issues)
Diffstat (limited to 'graphics')
| -rw-r--r-- | graphics/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 8f16f71..050c314 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -17,4 +17,5 @@ workspace = true [features] default = [] debug = [] -wayland = ["raylib/wayland"] +wayland = ["sdl", "raylib/wayland"] +sdl = ["raylib/sdl"] |