From 9d26e2c6f06493f286d79de6eb9f4ebebc26f059 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sun, 31 May 2015 16:33:39 -0700 Subject: [PATCH] Tweak comments --- src/video/video.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/video.h b/src/video/video.h index 2f9175cb..bfff0afc 100644 --- a/src/video/video.h +++ b/src/video/video.h @@ -71,13 +71,13 @@ extern A2Color_s colormap[]; void video_init(void); /* - * Begin main video loop (does not return) + * Enters main video loop (returns on emulator shutdown request). */ void video_main_loop(void); /* - * Undo anything done by video_init() and video_start(). Called before exiting the - * emulator. + * Begins video subsystem shutdown. Because this process is multithreaded, this really just gives notice that a + * shutdown has been requested, and so various threads should begin their own shutdown process. */ void video_shutdown(void);