aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_image.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/gwin_image.c')
-rw-r--r--src/gwin/gwin_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/gwin_image.c b/src/gwin/gwin_image.c
index d19c4d30..c40ecc81 100644
--- a/src/gwin/gwin_image.c
+++ b/src/gwin/gwin_image.c
@@ -99,10 +99,10 @@ static void ImageRedraw(GHandle gh) {
// Wait for that delay if required
switch(delay) {
- case TIME_INFINITE:
+ case gDelayForever:
// Everything is done
break;
- case TIME_IMMEDIATE:
+ case gDelayNone:
// We can't allow a continuous loop here as it would lock the system up so we delay for the minimum period
delay = 1;
// Fall through