From 49b4ba8ed9707e7767be49a4b441012c09a8b7e1 Mon Sep 17 00:00:00 2001 From: Patrick Heyer Date: Mon, 10 Oct 2022 02:05:44 +0200 Subject: [PATCH] obs-scripting: Fix block comment formatting Co-authored-by: Norihiro Kamae --- deps/obs-scripting/obs-scripting-python.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deps/obs-scripting/obs-scripting-python.c b/deps/obs-scripting/obs-scripting-python.c index ac80c6b45..e35189938 100644 --- a/deps/obs-scripting/obs-scripting-python.c +++ b/deps/obs-scripting/obs-scripting-python.c @@ -1514,10 +1514,11 @@ void obs_python_script_save(obs_script_t *s) static void python_tick(void *param, float seconds) { struct obs_python_script *data; - /* When loading a new Python script, the GIL might be released while importing the module, - allowing the tick to run and change and reset the cur_python_script state variable. Use the - busy_script variable to save and restore the value if not null. - */ + /* When loading a new Python script, the GIL might be released while + * importing the module, allowing the tick to run and change and reset + * the cur_python_script state variable. Use the busy_script variable + * to save and restore the value if not null. + */ struct obs_python_script *busy_script; bool valid; uint64_t ts = obs_get_video_frame_time();