Asset loading
This commit is contained in:
@@ -27,7 +27,13 @@ void debugPrint(const char_t *message, ...) {
|
||||
}
|
||||
|
||||
#elif DOLPHIN
|
||||
if(!DISPLAY.frameBuffer) return;
|
||||
if(!DISPLAY.frameBuffer) {
|
||||
errorret_t ret = displayInit();
|
||||
if(ret.code != ERROR_OK) {
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
||||
console_init(
|
||||
DISPLAY.frameBuffer,
|
||||
20,
|
||||
|
||||
Reference in New Issue
Block a user