diff --git a/ddraw.rc b/ddraw.rc index 93931f9..daf4dcf 100644 --- a/ddraw.rc +++ b/ddraw.rc @@ -4,7 +4,7 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 3 #define VERSION_BUILD 0 -#define VERSION_REVISION 1 +#define VERSION_REVISION 2 #define VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION #define VERSION_STRING ver_str(VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION) diff --git a/src/main.c b/src/main.c index 90f05ef..60b5e93 100644 --- a/src/main.c +++ b/src/main.c @@ -1149,6 +1149,9 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) /* fall through for lParam */ /* down messages are ignored if we have no cursor lock */ + case WM_LBUTTONDBLCLK: + case WM_MBUTTONDBLCLK: + case WM_RBUTTONDBLCLK: case WM_LBUTTONDOWN: case WM_RBUTTONDOWN: case WM_MBUTTONDOWN: diff --git a/src/settings.c b/src/settings.c index 0e8a672..edda21c 100644 --- a/src/settings.c +++ b/src/settings.c @@ -291,11 +291,11 @@ static void CreateSettingsIni() "\n" "; Dune 2000\n" "[dune2000]\n" - "maxgameticks=60\n" + "maxgameticks=58\n" "\n" "; Dune 2000 Online\n" "[dune2000-spawn]\n" - "maxgameticks=60\n" + "maxgameticks=58\n" "\n" "; Command & Conquer: Tiberian Sun\n" "[game]\n"