You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix some issues found by cppcheck.
This commit is contained in:
@@ -651,7 +651,7 @@ Ref<Texture2D> EditorExportPlatformJavaScript::get_run_icon() const {
|
||||
}
|
||||
|
||||
void EditorExportPlatformJavaScript::_server_thread_poll(void *data) {
|
||||
EditorExportPlatformJavaScript *ej = (EditorExportPlatformJavaScript *)data;
|
||||
EditorExportPlatformJavaScript *ej = static_cast<EditorExportPlatformJavaScript *>(data);
|
||||
while (!ej->server_quit) {
|
||||
OS::get_singleton()->delay_usec(6900);
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user