diff options
| author | johannes <johannes.herman@gmail.com> | 2024-02-11 02:01:40 +0100 |
|---|---|---|
| committer | johannes <johannes.herman@gmail.com> | 2024-02-11 02:01:40 +0100 |
| commit | eae7ca1df344ab28f451d2e8cab3e409d6d13c90 (patch) | |
| tree | 846ac8ce9d2523c56e2383794e4ab079b813acbe /src/demo.c | |
| parent | c2e349569fcf796412b376db89304a19648f18b8 (diff) | |
format all
Diffstat (limited to 'src/demo.c')
| -rw-r--r-- | src/demo.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -21,8 +21,8 @@ const unsigned char mapmagic[] = {0x6b, 0xe6, 0xda, 0x4a, 0xce, 0xbd, 0x38, 0x0c void freedemo(demo *demo) { free(demo->map.data); - - for(int i = 0; i < demo->data.numchunks; i++) + + for (int i = 0; i < demo->data.numchunks; i++) { demochunk *chunk = &demo->data.chunks[i]; switch (chunk->type) @@ -50,7 +50,6 @@ void freedemo(demo *demo) } } free(demo->data.chunks); - } /* readers */ |
