From ea9e390f69454663ff8da0f077ee2ccd0471440e Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 14 Aug 2025 18:18:47 +0200 Subject: [PATCH] Cleanup: Improve & correct comment for asset system file flag --- source/blender/blenkernel/BKE_global.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/BKE_global.hh b/source/blender/blenkernel/BKE_global.hh index b9c5c54653a..70b869391cf 100644 --- a/source/blender/blenkernel/BKE_global.hh +++ b/source/blender/blenkernel/BKE_global.hh @@ -320,8 +320,8 @@ enum { // #define G_FILE_GLSL_NO_ENV_LIGHTING (1 << 28) /* deprecated */ /** * This file contains a single asset and its dependencies. Users may edit the asset through the - * UI, at which point the file will be regenerated by the asset system (API in - * #BKE_asset_edit.hh). Stored with a .asset.blend prefix. + * UI and save the changes, at which point the file will be regenerated by the asset system to + * include the edits (API in #BKE_asset_edit.hh). Stored with an .asset.blend file extension. */ G_FILE_ASSET_EDIT_FILE = (1 << 29), };