23fd26630f
Thanks to a very skilled reverser for the reboot patch!
15 lines
194 B
C
15 lines
194 B
C
/*
|
|
* draw.h
|
|
* by Reisyukaku
|
|
* Copyright (c) 2015 All Rights Reserved
|
|
*/
|
|
|
|
#include "types.h"
|
|
|
|
struct fb {
|
|
u8 *top_left;
|
|
u8 *top_right;
|
|
u8 *bottom;
|
|
};
|
|
|
|
void loadSplash(void); |