Remove debug printf
This commit is contained in:
parent
ab960ea12d
commit
14f44e79f7
3 changed files with 2 additions and 4 deletions
|
|
@ -1099,10 +1099,9 @@ - (void)doNothing:(id)object
|
|||
}
|
||||
|
||||
- (void)loadMainMenu
|
||||
{ // removed by Kovid as it generated compiler warnings
|
||||
{ // removed by Kovid as it generated compiler warnings
|
||||
}
|
||||
|
||||
|
||||
@end
|
||||
|
||||
// Set up the menu bar (manually)
|
||||
|
|
|
|||
2
glfw/init.c
vendored
2
glfw/init.c
vendored
|
|
@ -52,7 +52,7 @@ static _GLFWinitconfig _glfwInitHints =
|
|||
{
|
||||
GLFW_TRUE, // hat buttons
|
||||
GLFW_FALSE, // debug keyboard
|
||||
GLFW_TRUE, // enable joystick
|
||||
GLFW_TRUE, // enable joystick
|
||||
{
|
||||
GLFW_TRUE, // macOS menu bar
|
||||
GLFW_TRUE // macOS bundle chdir
|
||||
|
|
|
|||
1
glfw/x11_init.c
vendored
1
glfw/x11_init.c
vendored
|
|
@ -660,7 +660,6 @@ int _glfwPlatformInit(void)
|
|||
|
||||
#if defined(__linux__)
|
||||
if (_glfw.hints.init.enableJoysticks) {
|
||||
printf("1111111111\n");
|
||||
if (!_glfwInitJoysticksLinux())
|
||||
return GLFW_FALSE;
|
||||
if (_glfw.linjs.inotify > 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue