maint: remove namespace

This commit is contained in:
Edo 2022-12-23 11:37:41 +01:00 committed by GitHub
parent 827b9f7036
commit 671a1b45b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,13 +248,13 @@ namespace gsc
{ {
if (!scr_get_int(0)) if (!scr_get_int(0))
{ {
scr_error(utils::string::va("Assert fail: %s", game::native::Scr_GetString(1))); scr_error(va("Assert fail: %s", game::native::Scr_GetString(1)));
} }
} }
void assert_msg_cmd() void assert_msg_cmd()
{ {
scr_error(utils::string::va("Assert fail: %s", game::native::Scr_GetString(0))); scr_error(va("Assert fail: %s", game::native::Scr_GetString(0)));
} }
} }