Skip to content

Commit

Permalink
libcommon: Missing switch default in MNEdit_CommandResponder
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Mar 13, 2014
1 parent 1777a66 commit 6337fcb
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions doomsday/plugins/common/src/hu_lib.c
Expand Up @@ -28,15 +28,7 @@
#include <ctype.h>
#include <math.h>

#if __JDOOM__
# include "jdoom.h"
#elif __JDOOM64__
# include "jdoom64.h"
#elif __JHERETIC__
# include "jheretic.h"
#elif __JHEXEN__
# include "jhexen.h"
#endif
#include "common.h"

#include "hu_chat.h"
#include "hu_lib.h"
Expand Down Expand Up @@ -2049,6 +2041,8 @@ int MNEdit_CommandResponder(mn_object_t *ob, menucommand_e cmd)
case MCMD_NAV_PAGEDOWN:
case MCMD_NAV_PAGEUP:
return true;

default: break;
}
}

Expand Down

0 comments on commit 6337fcb

Please sign in to comment.