Skip to content

Commit 295efb4

Browse files
authored
Update game.cpp
Add forgotten comma
1 parent c6b5515 commit 295efb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Main/Source/game.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5866,7 +5866,7 @@ truth game::ValidateCustomCmdKey(int iNewKey, int iIgnoreIndex, bool bMoveKeys)
58665866
festring IntToHexStr(int i)
58675867
{
58685868
static char hexbuf[100];
5869-
snprintf(hexbuf, sizeof(hexbuf) "0x%04X", i);
5869+
snprintf(hexbuf, sizeof(hexbuf), "0x%04X", i);
58705870
festring fs;fs=hexbuf;
58715871
return fs;
58725872
}

0 commit comments

Comments
 (0)