settings_gui.c
changeset 536 03d80fecb999
parent 534 306bc86eb23e
child 543 946badd71033
equal deleted inserted replaced
535:0ddbb93125d1 536:03d80fecb999
   286 	{0,1,1,STR_6834_AT_END_OF_LINE_AND_AT_STATIONS},
   286 	{0,1,1,STR_6834_AT_END_OF_LINE_AND_AT_STATIONS},
   287 	{0,1,1,STR_6836_OFF},
   287 	{0,1,1,STR_6836_OFF},
   288 	{0,2,1,STR_6839_PERMISSIVE},
   288 	{0,2,1,STR_6839_PERMISSIVE},
   289 };
   289 };
   290 
   290 
   291 static bool FORCEINLINE GetBitAndShift(uint32 *b)
   291 static inline bool GetBitAndShift(uint32 *b)
   292 {
   292 {
   293 	uint32 x = *b;
   293 	uint32 x = *b;
   294 	*b >>= 1;
   294 	*b >>= 1;
   295 	return (x&1) != 0;
   295 	return (x&1) != 0;
   296 }
   296 }