Skip to content

Commit

Permalink
fix linux-dist/main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
inada-s committed Jan 1, 2025
1 parent fc6df74 commit d849476
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions core/linux-dist/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,6 @@ void os_DoEvents()
#endif
}

void os_SetWindowText(const char * text)
{
#if defined(SUPPORT_X11)
x11_window_set_text(text);
#endif
#if defined(USE_SDL)
sdl_window_set_text(text);
#endif
}

void os_CreateWindow()
{
#if defined(SUPPORT_DISPMANX)
dispmanx_window_create();
#endif
#if defined(SUPPORT_X11)
x11_window_create();
#endif
#if defined(USE_SDL)
sdl_window_create();
#endif
}

void os_LaunchFromURL(const std::string& url)
{
auto cmd = "xdg-open " + url;
Expand Down

0 comments on commit d849476

Please sign in to comment.