From: Dave Murphy Date: Fri, 19 Dec 2014 10:07:28 +0000 (+0000) Subject: use new image X-Git-Tag: v0.5.0~36^2^2~1 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=b3f8a99426c723f2bb74b6fc7f79209815e62fdb;p=corbenik%2Fctrulib.git use new image --- diff --git a/examples/graphics/bitmap/24bit-color/source/main.c b/examples/graphics/bitmap/24bit-color/source/main.c index bc9b28f..639456f 100644 --- a/examples/graphics/bitmap/24bit-color/source/main.c +++ b/examples/graphics/bitmap/24bit-color/source/main.c @@ -17,7 +17,7 @@ #include //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())