IRQ_ENABLED(): Prevent name clash with variable defined within macro
[bertos.git] / app / demo / demo.c
index 4d0172f9ef62f07c77f464e5f38090e44134a5d3..729abe090357eed78814e4c12e8c8e5281459cb9 100644 (file)
  *
  * \version $Id: demo.c 18242 2007-10-08 17:35:23Z marco $
  *
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * \brief Windowing system test.
  */
 
+#include <cfg/macros.h>
+
 #include <emul/emul.h>
+
 #include <kern/proc.h>
+#include <kern/msg.h>
+
 #include <drv/timer.h>
 #include <drv/buzzer.h>
 #include <drv/lcd_gfx.h>
 #include <drv/kbd.h>
+
 #include <gfx/gfx.h>
 #include <gfx/win.h>
 #include <gfx/text.h>
 #include <gfx/font.h>
+
 #include <gui/menu.h>
 #include <icons/logo.h>
-#include <cfg/macros.h>
 
 /**
  * Draw a pentacle in the provided bitmap.
@@ -101,7 +107,7 @@ static void bouncing_logo(Bitmap *bm)
        const long SPEED_SCALE = 1000;
        const long GRAVITY_ACCEL = 10;
        const long BOUNCE_ELASTICITY = 2;
-       long h = (long)(-project_grl_logo.height) * SPEED_SCALE;
+       long h = (long)(-bertos_logo.height) * SPEED_SCALE;
        long speed = 1000;
 
        /* Repeat until logo stands still on the bottom edge */
@@ -123,9 +129,9 @@ static void bouncing_logo(Bitmap *bm)
                /* Update graphics */
                gfx_bitmapClear(bm);
                gfx_blitImage(bm,
-                       (bm->width - project_grl_logo.width) / 2,
+                       (bm->width - bertos_logo.width) / 2,
                        h / SPEED_SCALE,
-                       &project_grl_logo);
+                       &bertos_logo);
                lcd_blitBitmap(bm);
 
                timer_delay(10);