Skip to content

Commit 431534c

Browse files
committed
style(input): Format keyboard repeat enum across multiple lines
1 parent 9d42dfb commit 431534c

File tree

1 file changed

+5
-1
lines changed
  • Generals/Code/GameEngine/Include/GameClient

1 file changed

+5
-1
lines changed

Generals/Code/GameEngine/Include/GameClient/Keyboard.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ struct KeyboardIO
8686
class Keyboard : public SubsystemInterface
8787
{
8888

89-
enum { KEY_REPEAT_DELAY_MSEC = 333, KEY_REPEAT_INTERVAL_MSEC = 67 }; // ~2 frames at 30 FPS
89+
enum
90+
{
91+
KEY_REPEAT_DELAY_MSEC = 333,
92+
KEY_REPEAT_INTERVAL_MSEC = 67
93+
}; // ~2 frames at 30 FPS
9094

9195
public:
9296

0 commit comments

Comments
 (0)