From 0007a518bc585406d73856e0ee9ee96d77cfc0e9 Mon Sep 17 00:00:00 2001 From: Nathan Bowhay Date: Wed, 11 Feb 2015 09:53:45 -0800 Subject: [PATCH] Corrected filesize units in return comment I may be mistaken but at least in windows I think the return will be in bytes no KB. --- Engine/source/console/fileSystemFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/console/fileSystemFunctions.cpp b/Engine/source/console/fileSystemFunctions.cpp index b37a61386..00ae10f69 100644 --- a/Engine/source/console/fileSystemFunctions.cpp +++ b/Engine/source/console/fileSystemFunctions.cpp @@ -511,7 +511,7 @@ DefineEngineFunction(fileSize, S32, ( const char* fileName ),, "@brief Determines the size of a file on disk\n\n" "@param fileName Name and path of the file to check\n" - "@return Returns filesize in KB, or -1 if no file\n" + "@return Returns filesize in bytes, or -1 if no file\n" "@ingroup FileSystem") {