Skip to content

Commit

Permalink
Fixed build for non-webos
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jan 14, 2021
1 parent 6e7c8f6 commit 5e64c29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/webos-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Package Release for webOS
name: Release for webOS

on:
push:
Expand Down
4 changes: 4 additions & 0 deletions app/app_sdl.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ static char wintitle[32];

int app_init(int argc, char *argv[])
{
#if OS_WEBOS
return app_webos_init(argc, argv);
#else
return 0;
#endif
}

APP_WINDOW_CONTEXT app_window_create()
Expand Down

0 comments on commit 5e64c29

Please sign in to comment.