Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sip
engine
Commits
e797261e
Commit
e797261e
authored
5 years ago
by
Ivan Dokunov
Browse files
Options
Downloads
Patches
Plain Diff
bugFix cache + up version from 4.0 to 4.1
parent
e53bb062
Branches
Branches containing commit
Tags
version_X.4.1-dev
Tags containing commit
1 merge request
!6
Version X.7.0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/SkyXEngine.h
+1
-1
1 addition, 1 deletion
source/SkyXEngine.h
source/core/FileSystem.cpp
+2
-2
2 additions, 2 deletions
source/core/FileSystem.cpp
with
3 additions
and
3 deletions
source/SkyXEngine.h
+
1
−
1
View file @
e797261e
...
...
@@ -292,7 +292,7 @@ QT стиль документирования (!) и QT_AUTOBRIEF - корот
#ifndef __SKYXENGINE_H
#define __SKYXENGINE_H
#define SKYXENGINE_VERSION "X.4.
0
-dev"
#define SKYXENGINE_VERSION "X.4.
1
-dev"
#define SKYXENGINE_VERSION4EDITORS "SkyXEngine version " ## SKYXENGINE_VERSION
...
...
This diff is collapsed.
Click to expand it.
source/core/FileSystem.cpp
+
2
−
2
View file @
e797261e
...
...
@@ -444,7 +444,7 @@ IFile *CFileSystem::openFile(const char *szPath, FILE_OPEN_MODE mode = FILE_MODE
String
*
newFileName
;
if
(
!
fullPath
)
if
(
CHECK_CORRECT_PATH
(
fullPath
)
)
{
newFileName
=
new
String
(
m_filePaths
[
m_writableRoot
].
c_str
());
*
newFileName
+=
'/'
;
...
...
@@ -461,7 +461,7 @@ IFile *CFileSystem::openFile(const char *szPath, FILE_OPEN_MODE mode = FILE_MODE
if
(
inRoot
&&
!
fileExists
(
fullPath
))
{
size_t
len
=
strlen
(
fullPath
)
+
1
;
char
dirName
[
SIZE_PATH
/
2
];
char
dirName
[
SIZE_PATH
];
memcpy
(
dirName
,
fullPath
,
len
);
dirname
(
dirName
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment