]> Chaos Git - corbenik/ctrulib.git/commitdiff
use new image
authorDave Murphy <davem@devkitpro.org>
Fri, 19 Dec 2014 10:07:28 +0000 (10:07 +0000)
committerDave Murphy <davem@devkitpro.org>
Fri, 19 Dec 2014 10:07:28 +0000 (10:07 +0000)
examples/graphics/bitmap/24bit-color/source/main.c

index bc9b28f2514d442dada0088d6d593f4000b1f5f0..639456f2bfd6f727ae1ea437463ae376c7e246fd 100644 (file)
@@ -17,7 +17,7 @@
 #include <string.h>
 
 //This include a header containing definitions of our image
-#include "drunkenlogo_rgb.h"
+#include "brew_rgb.h"
 
 int main(int argc, char **argv)
 {
@@ -41,7 +41,7 @@ int main(int argc, char **argv)
        u8* fb = gfxGetFramebuffer(GFX_BOTTOM, GFX_LEFT, NULL, NULL);
        
        //Copy our image in the bottom screen's frame buffer
-       memcpy(fb, drunkenlogo_rgb, drunkenlogo_rgb_size);
+       memcpy(fb, brew_rgb, brew_rgb_size);
 
        // Main loop
        while (aptMainLoop())