Remove formatting leftovers from doc

This commit is contained in:
Lwmte 2025-03-16 15:41:47 +01:00
parent db3b9cc411
commit 74e13fc678
2 changed files with 4 additions and 4 deletions

View file

@ -1255,7 +1255,7 @@
<ul>
<li><span class="parameter">errorMode</span>
<span class="types"><a class="type" href="../4 enums/Flow.ErrorMode.html#">ErrorMode</a></span>
error mode to use. */
error mode to use.
</li>
</ul>
@ -1278,7 +1278,7 @@
<ul>
<li><span class="parameter">multithreaded</span>
<span class="types"><span class="type">bool</span></span>
determines whether to use multithreading or not. */
determines whether to use multithreading or not.
</li>
</ul>

View file

@ -325,13 +325,13 @@ namespace TEN::Scripting
sol::meta_function::new_index, NewIndexErrorMaker(SystemSettings, ScriptReserved_SystemSettings),
/// How should the application respond to script errors?
// @tfield Flow.ErrorMode errorMode error mode to use. */
// @tfield Flow.ErrorMode errorMode error mode to use.
"errorMode", &SystemSettings::ErrorMode,
/// Use multithreading in certain calculations. <br>
// When set to `true`, some performance-critical calculations will be performed in parallel, which can give
// a significant performance boost. Don't disable unless you have problems with launching or using TombEngine.
// @tfield bool multithreaded determines whether to use multithreading or not. */
// @tfield bool multithreaded determines whether to use multithreading or not.
"multithreaded", &SystemSettings::Multithreaded,
/// Can the game utilize the fast reload feature? <br>