1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-24 19:26:04 +00:00
Atmosphere/fusee/fusee-secondary/src/splash_screen.c

20 lines
702 B
C
Raw Normal View History

#include <stdio.h>
#include "timers.h"
#include "splash_screen.h"
2018-05-13 22:49:50 +01:00
#include "fs_utils.h"
#include "display/video_fb.h"
void display_splash_screen_bmp(const char *custom_splash_path) {
uint8_t *splash_screen = g_default_splash_screen;
if ((custom_splash_path != NULL) && (custom_splash_path[0] != '\x00')) {
2018-05-13 22:49:50 +01:00
if (!read_from_file(splash_screen, sizeof(g_default_splash_screen), custom_splash_path)) {
2018-05-20 15:18:48 +01:00
fatal_error("Failed to read custom splash screen from %s!\n", custom_splash_path);
}
}
/* TODO: Display the splash screen. It should be a pointer to a BMP, at this point. */
/* Display the splash screen for three seconds. */
/* udelay(3000000); */
}