From 32731f487d01c0ab5dab27da38728ab27abde4bf Mon Sep 17 00:00:00 2001 From: bofeng Date: Thu, 12 Dec 2024 16:32:58 +0800 Subject: [PATCH] refine --- native/cocos/platform/android/AndroidPlatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/cocos/platform/android/AndroidPlatform.cpp b/native/cocos/platform/android/AndroidPlatform.cpp index 7a84ace962d..335c90d189d 100644 --- a/native/cocos/platform/android/AndroidPlatform.cpp +++ b/native/cocos/platform/android/AndroidPlatform.cpp @@ -854,7 +854,7 @@ int32_t AndroidPlatform::loop() { // suspend thread while _loopTimeOut set to -1 while (ALooper_pollOnce(_loopTimeOut, nullptr, nullptr, reinterpret_cast(&source)) >= 0) { - // Process events + // Process event if (source != nullptr) { source->process(_app, source); }