1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-16 07:07:13 +02:00

Expose hidden server option.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sandu Liviu Catalin
2021-08-01 13:03:19 +03:00
parent 8eb431ea8f
commit 79fca45c13
3 changed files with 6 additions and 5 deletions

View File

@ -99,7 +99,7 @@ void ScriptSrc::Process()
// Read completely?
if (r != static_cast< size_t >(length))
{
return SqThrowF(fmt::runtime("Failed to read script contents.")); // Not cool
SqThrowF(fmt::runtime("Failed to read script contents.")); // Not cool
}
// Where the last line ended
size_t line_start = 0, line_end = 0;