Skip to content

Commit

Permalink
Fix macro warning due to incorrect define conjunction
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Nov 25, 2018
1 parent 2e37ee9 commit d83fe16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -406,7 +406,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("enable_console", "false");

// Altered settings for macOS
#ifdef __MACH__ && __APPLE__
#if defined(__MACH__) && defined(__APPLE__)
settings->setDefault("keymap_sneak", "KEY_SHIFT");
settings->setDefault("fps_max", "0");
#endif
Expand Down

0 comments on commit d83fe16

Please sign in to comment.