Commit 1e0f991 Robert Soliday
committed
1 parent 57ebb05 commit 1e0f991 Copy full SHA for 1e0f991
File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 67
67
*/
68
68
#define MEDM_VERSION 3
69
69
#define MEDM_REVISION 1
70
- #define MEDM_MODIFICATION 20
70
+ #define MEDM_MODIFICATION 21
71
71
#define MEDM_PATCH_LEVEL 0
72
- #define MEDM_VERSION_STRING "MEDM Version 3.1.20 "
73
- #define MEDM_VERSION_DIGITS "MEDM030120 "
72
+ #define MEDM_VERSION_STRING "MEDM Version 3.1.21 "
73
+ #define MEDM_VERSION_DIGITS "MEDM030121 "
Original file line number Diff line number Diff line change 25
25
#define DEBUG_TEXT_VERIFY 0
26
26
#define DEBUG_LOSING_FOCUS 0
27
27
#define DEBUG_RELATED_DISPLAY 0
28
+ #if defined(_WIN32 )
29
+ #include <windows.h>
30
+ #endif
28
31
29
32
#include <ctype.h>
30
33
#include <stdint.h>
@@ -2471,6 +2474,11 @@ static void initializeResourcePaletteElements()
2471
2474
/* Reset the index, fill the rest with zeros */
2472
2475
for (k = j ; k < MAX_RESOURCES_FOR_DL_ELEMENT ; k ++ )
2473
2476
{
2477
+ #if defined(_WIN32 )
2478
+ Sleep (50 )
2479
+ #else
2480
+ sleep (.05 );
2481
+ #endif
2474
2482
resourcePaletteElements [index ].childIndexRC [k ] = 0 ;
2475
2483
resourcePaletteElements [index ].children [k ] = NULL ;
2476
2484
}
You can’t perform that action at this time.
0 commit comments