diff options
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/game_info.cpp | 2 | ||||
-rw-r--r-- | src/game/game_text.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/game_info.cpp b/src/game/game_info.cpp index e6ec3657b..e0a6027fc 100644 --- a/src/game/game_info.cpp +++ b/src/game/game_info.cpp @@ -55,7 +55,7 @@ template <> const char *GetClassName<GameInfo, ST_GS>() { return "GSInfo"; } { /* Get the GameInfo */ SQUserPointer instance = NULL; - if (SQ_FAILED(sq_getinstanceup(vm, 2, &instance, 0)) || instance == NULL) return sq_throwerror(vm, _SC("Pass an instance of a child class of GameInfo to RegisterGame")); + if (SQ_FAILED(sq_getinstanceup(vm, 2, &instance, 0)) || instance == NULL) return sq_throwerror(vm, "Pass an instance of a child class of GameInfo to RegisterGame"); GameInfo *info = (GameInfo *)instance; SQInteger res = ScriptInfo::Constructor(vm, info); diff --git a/src/game/game_text.cpp b/src/game/game_text.cpp index 691577cbd..42ced2008 100644 --- a/src/game/game_text.cpp +++ b/src/game/game_text.cpp @@ -356,7 +356,7 @@ void RegisterGameTranslation(Squirrel *engine) HSQUIRRELVM vm = engine->GetVM(); sq_pushroottable(vm); - sq_pushstring(vm, _SC("GSText"), -1); + sq_pushstring(vm, "GSText", -1); if (SQ_FAILED(sq_get(vm, -2))) return; int idx = 0; |