Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp')
-rw-r--r--source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp b/source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp
index 52a033ce538..2471b528eac 100644
--- a/source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp
+++ b/source/gameengine/GamePlayer/common/GPC_RawLogoArrays.cpp
@@ -1029,7 +1029,7 @@ void GetRawBlenderLogo(unsigned char **data, int *width, int *height)
*data = new unsigned char[14720];
// and copy it. Now we are certain that the calling function
// can control the memory location
- for(int i = 0; i < 14720 /* tmp array size */; i++)
+ for (int i = 0; i < 14720 /* tmp array size */; i++)
{
(*data)[i] = logo_blender_raw[i];
}
@@ -1449,7 +1449,7 @@ void GetRawBlender3DLogo(unsigned char **data, int *width, int *height)
*data = new unsigned char[5984];
// and copy it. Now we are certain that the calling function
// can control the memory location
- for(int i = 0; i < 5984 /* tmp array size */; i++)
+ for (int i = 0; i < 5984 /* tmp array size */; i++)
{
(*data)[i] = logo_blender3d_raw[i];
}