Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
2d4bad07
Commit
2d4bad07
authored
Dec 20, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
osd: fix return value.
parent
c59ef299
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/osd/osd.c
src/osd/osd.c
+4
-4
No files found.
src/osd/osd.c
View file @
2d4bad07
...
...
@@ -73,7 +73,7 @@ static bool osd_ParserLoad( osd_menu_t *p_menu, const char *psz_file )
if
(
!
p_menu
->
p_image
||
!
p_menu
->
psz_file
)
{
msg_Err
(
p_menu
,
"unable to load images, aborting .."
);
return
tru
e
;
return
fals
e
;
}
else
{
...
...
@@ -109,8 +109,8 @@ static void osd_ParserUnload( osd_menu_t *p_menu )
/**
* Change state on an osd_button_t.
*
* This function selects the specified state and returns a pointer
vlc_custom_createto it. The
* following states are currently supported:
* This function selects the specified state and returns a pointer
*
vlc_custom_create to it. The
following states are currently supported:
* \see OSD_BUTTON_UNSELECT
* \see OSD_BUTTON_SELECT
* \see OSD_BUTTON_PRESSED
...
...
@@ -121,7 +121,7 @@ static osd_state_t *osd_StateChange( osd_button_t *p_button, const int i_state )
osd_state_t
*
p_temp
=
NULL
;
int
i
=
0
;
for
(
i
=
0
;
p_current
!=
NULL
;
i
++
)
for
(
i
=
0
;
p_current
!=
NULL
;
i
++
)
{
if
(
p_current
->
i_state
==
i_state
)
{
...
...
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