diff options
| author | quou <quou@disroot.org> | 2024-08-03 16:36:51 +1000 | 
|---|---|---|
| committer | quou <quou@disroot.org> | 2024-08-03 16:36:51 +1000 | 
| commit | fbf210c76a4c548fe16513a0c07c50532b51d4fb (patch) | |
| tree | c5a3fc1f7b99a616b8c702f55203f78b5cc7851c /gui.c | |
| parent | 496db167337e246cc12beb1ace2bdec35b916479 (diff) | |
Fix unitialised prev pointer
Diffstat (limited to 'gui.c')
| -rw-r--r-- | gui.c | 1 | 
1 files changed, 1 insertions, 0 deletions
@@ -21,6 +21,7 @@ void gui_begin(GUI* g, const App* app, Arena* a) {  	g->app = app;  	g->pad = 2;  	g->first = 0; +	g->prev = 0;  	g->cursor[0] = 10;  	g->cursor[1] = 10;  }  |