fix(renderer): 修正命令队列执行时的错误信息文本

将错误信息从"CommandQueue::execute: commandList 为空"改为更符合中文习惯的"命令队列::执行::命令列表"
This commit is contained in:
ChestnutYueyue 2026-03-03 22:13:10 +08:00
parent 79e939ce5e
commit 4a902134dc
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ void CommandQueue::updateGlobalUBO(const Mat4 &viewProjection, float deltaTime,
void CommandQueue::execute(uint32_t frameIndex) { void CommandQueue::execute(uint32_t frameIndex) {
if (!commandList_) { if (!commandList_) {
E2D_ERROR("CommandQueue::execute: commandList 为空"); E2D_ERROR("命令队列::执行::命令列表");
return; return;
} }