• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Lightweight cross-platform joystick input library


Commit MetaInfo

Revisão1ecbecb40b8c268a35dba1473cb239cda78578b5 (tree)
Hora2021-03-24 11:36:42
AutorAlaskanEmily <emily@alas...>
CommiterAlaskanEmily

Mensagem de Log

Fix a warning with newer GCC

Mudança Sumário

Diff

--- a/unix/rejoy_unix.cpp
+++ b/unix/rejoy_unix.cpp
@@ -34,7 +34,8 @@ UnixGamepad::UnixGamepad(const char *path,
3434 ///////////////////////////////////////////////////////////////////////////////
3535
3636 UnixGamepad::UnixGamepad(const UnixGamepad& other)
37- : m_fd(dup(other.m_fd)) {
37+ : Gamepad(other)
38+ , m_fd(dup(other.m_fd)) {
3839
3940 }
4041