Skip to content

Commit

Permalink
wiiu: Add GX2 as an available window backend
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Jun 13, 2024
1 parent eef3165 commit 74c78f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/graphic/Fast3D/Fast3dWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ Fast3dWindow::Fast3dWindow(std::vector<std::shared_ptr<Ship::GuiWindow>> guiWind
AddAvailableWindowBackend(Ship::WindowBackend::FAST3D_SDL_METAL);
}
#endif
#ifdef __WIIU__
AddAvailableWindowBackend(Ship::WindowBackend::FAST3D_WIIU_GX2);
#else
AddAvailableWindowBackend(Ship::WindowBackend::FAST3D_SDL_OPENGL);
#endif
}

Fast3dWindow::~Fast3dWindow() {
Expand Down

0 comments on commit 74c78f7

Please sign in to comment.