summaryrefslogtreecommitdiff
path: root/examples/game_of_life.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-14 06:33:54 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-14 06:33:54 +0100
commitdced6f7768e02252af11f9b41017d75c66b47d81 (patch)
tree008f4cb816a09b776013d5903b34fb89c01cf042 /examples/game_of_life.c
parentc9208089c6074575342d529f494295c13269a1aa (diff)
downloadreduced_system_layer-dced6f7768e02252af11f9b41017d75c66b47d81.zip
Correct examples for changed graphics procs
Diffstat (limited to 'examples/game_of_life.c')
-rw-r--r--examples/game_of_life.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/game_of_life.c b/examples/game_of_life.c
index fdd3d54..d95fb9e 100644
--- a/examples/game_of_life.c
+++ b/examples/game_of_life.c
@@ -11,9 +11,7 @@ i32 main(i32 argc, c8 **argv) {
(void) argv;
g_platform = (Platform) {
- .title = "Conway's Game of Life",
- .frame_width = 960,
- .frame_height = 720,
+ .title = "Conway's Game of Life",
};
p_event_loop();