scottie modes added ; with dayton paper copy

This commit is contained in:
2026-02-23 12:37:05 +01:00
parent ba38a51a68
commit 966c15cffb
9 changed files with 231 additions and 20 deletions

View File

@@ -36,6 +36,6 @@ void image_free(image_t *img) {
void image_free_raw(image_t *img) {
if (img->data)
free(img->data);
free(img->data); // if you do this call only once, cause of double frees
img->data = NULL;
}