We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lua引擎的jassbind.cpp中
void push_string(lua_State* L, jass::jstring_t value) { if (value < 0x10000) { value = get_jass_vm()->string_table->get(value); } lua_pushstring(L, jass::from_trigstring(jass::from_string(value))); }
这里判断的小于0x10000有问题 好像是为了兼容 全局变量读取? 索引大于0x10000会导致崩溃
The text was updated successfully, but these errors were encountered:
忘了
Sorry, something went wrong.
No branches or pull requests
lua引擎的jassbind.cpp中
这里判断的小于0x10000有问题 好像是为了兼容 全局变量读取? 索引大于0x10000会导致崩溃
The text was updated successfully, but these errors were encountered: