Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
fuse-libretro
Commits
3f2c831c
Unverified
Commit
3f2c831c
authored
May 28, 2021
by
Thomas Conté
Committed by
GitHub
May 28, 2021
Browse files
Merge pull request #106 from libretro/fix-startup-gekko
Fix for startup manager on WiiU
parents
75e718b1
21533d2c
Pipeline
#32159
passed with stages
in 19 minutes and 41 seconds
Changes
1
Pipelines
24
Hide whitespace changes
Inline
Side-by-side
fuse/display.c
View file @
3f2c831c
...
...
@@ -205,21 +205,25 @@ display_init( int *argc, char ***argv )
static
int
display_init_wrapper
(
void
*
context
)
{
/* The Wii has an explicit call to display_init for now */
#ifndef GEKKO
display_startup_context
*
typed_context
=
(
display_startup_context
*
)
context
;
return
display_init
(
typed_context
->
argc
,
typed_context
->
argv
);
#else
return
0
;
#endif
/* #ifndef GEKKO */
}
void
display_register_startup
(
display_startup_context
*
context
)
{
/* The Wii has an explicit call to display_init for now */
#ifndef GEKKO
startup_manager_register_no_dependencies
(
STARTUP_MANAGER_MODULE_DISPLAY
,
display_init_wrapper
,
context
,
NULL
);
#endif
/* #ifndef GEKKO */
}
/* Mark as 'dirty' the pixels which have been changed by a write to
...
...
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