Skip to content

Commit

Permalink
Fixed: Build errors in Release build
Browse files Browse the repository at this point in the history
On gcc: UI_Responder() was used without a declaration.
On gcc+msvc: macro syntax error.
  • Loading branch information
skyjake committed Feb 15, 2012
1 parent 30cfa18 commit 5733398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/dd_input.h
Expand Up @@ -288,7 +288,7 @@ void I_TrackInput(ddevent_t *ev, timespan_t ticLength);
*/
void Rend_AllInputDeviceStateVisuals(void);
#else
# define Rend_AllInputDeviceStateVisuals
# define Rend_AllInputDeviceStateVisuals()
#endif

#endif /* LIBDENG_CORE_INPUT_H */
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/dd_input.c
Expand Up @@ -37,13 +37,13 @@
#include "de_infine.h"
#include "de_system.h"
#include "de_misc.h"
#include "de_ui.h"

// For the debug visuals:
#if _DEBUG
# include "de_graphics.h"
# include "de_refresh.h"
# include "de_render.h"
# include "de_ui.h"
#endif

#include "con_busy.h"
Expand Down

0 comments on commit 5733398

Please sign in to comment.