1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-05-01 13:57:34 +00:00

SCP: Updated to current.

This commit is contained in:
Richard Cornwell
2020-02-14 18:41:56 -05:00
parent ae8a6faacc
commit 2b49d85421
6 changed files with 736 additions and 46 deletions

View File

@@ -975,6 +975,18 @@ display_init(enum display_type type, int sf, void *dptr)
fprintf(stderr, "Display initialization failed\r\n");
return 0;
}
void
display_close(void *dptr)
{
if (!initialized)
return;
free (points);
ws_shutdown();
initialized = 0;
}
void
display_reset(void)