Fix compile

This commit is contained in:
2026-03-28 21:52:52 -05:00
parent dbb7e9f53c
commit ea898da6c2

View File

@@ -51,13 +51,10 @@ errorret_t displayInit(void) {
errorChain(textInit());
errorChain(screenInit());
assertTrue(SHADER_UNLIT.shaderProgramId != 0, "Unlit shader must be initialized before display init.");
errorOk();
}
errorret_t displayUpdate(void) {
assertTrue(SHADER_UNLIT.shaderProgramId != 0, "Unlit shader must be initialized before display update.");
#ifdef displayPlatformUpdate
errorChain(displayPlatformUpdate());
#endif