MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / Input_Flags_ClearBits

Function Input_Flags_ClearBits

src/input/input.c:228–232  ·  view source on GitHub ↗

* Clears the given bits in input flags. * * @param bits The bits to clear. * @return The new value of input flags. */

Source from the content-addressed store, hash-verified

226 * @return The new value of input flags.
227 */
228uint16 Input_Flags_ClearBits(uint16 bits)
229{
230 g_inputFlags &= ~bits;
231 return g_inputFlags;
232}
233
234/**
235 * Sets the given bits in input flags.

Callers 4

GameLoop_MainFunction · 0.85
GUI_EditBoxFunction · 0.85
GUI_Mentat_ShowHelpListFunction · 0.85
Mouse_SetMouseModeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected