diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 06:33:54 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 06:33:54 +0100 |
commit | dced6f7768e02252af11f9b41017d75c66b47d81 (patch) | |
tree | 008f4cb816a09b776013d5903b34fb89c01cf042 /examples/game_of_life.c | |
parent | c9208089c6074575342d529f494295c13269a1aa (diff) | |
download | reduced_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.c | 4 |
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(); |