Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
openjazz
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
openjazz
Commits
50b3e5c1
Commit
50b3e5c1
authored
Apr 11, 2010
by
anotherguest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed name for one scene script type
parent
773fd2f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
scene.h
src/scene/scene.h
+7
-1
sceneload.cpp
src/scene/sceneload.cpp
+3
-3
No files found.
src/scene/scene.h
View file @
50b3e5c1
...
...
@@ -60,7 +60,7 @@ enum {
ESceneTime
=
0x5d
,
ESceneTextLine
=
0x5e
,
ESceneTextVAdjust
=
0x5f
,
ESceneAnimation
Index
=
0xA7
,
ESceneAnimation
PlayAndContinue
=
0xA7
,
ESceneAnimationSetting
=
0xA6
,
ESceneTextSetting
=
0xb1
,
ESceneTextSomething
=
0xd9
,
...
...
@@ -142,6 +142,12 @@ class SceneFont {
};
class
SceneAnimation
{
public
:
};
class
Scene
{
private
:
...
...
src/scene/sceneload.cpp
View file @
50b3e5c1
...
...
@@ -443,10 +443,10 @@ void Scene::loadScripts (File *f) {
break
;
case
ESceneAnimation
Index
:
case
ESceneAnimation
PlayAndContinue
:
{
unsigned
char
aniIndex
=
f
->
loadChar
();
LOG
(
"ESceneAnimation
Index"
,
aniIndex
);
unsigned
char
playAndContinue
=
f
->
loadChar
();
LOG
(
"ESceneAnimation
PlayAndContinue"
,
playAndContinue
);
}
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment