Formatting fix

This commit is contained in:
Fangal-Airbag 2025-11-26 20:40:27 -05:00
parent ff4a119ba3
commit cfcb7a7049
3 changed files with 7 additions and 7 deletions

View File

@ -101,7 +101,7 @@ enum class InputFormType
//! Spaced boxes design with up to 40 characters
Boxes = 0,
//! The page design
Page = 1,
Page = 1,
};
enum class KeyboardLayout

View File

@ -51,8 +51,8 @@ main(int argc, char **argv)
nn::erreula::AppearErrorViewer(appearArg);
// Get WHBGfx's colour buffers for proper erreula rendering
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
WHBLogPrintf("Begin rendering...");
while (WHBProcIsRunning()) {
@ -84,7 +84,7 @@ main(int argc, char **argv)
cbTV->surface.format = GX2_SURFACE_FORMAT_SRGB_R8_G8_B8_A8;
GX2InitColorBufferRegs(cbTV);
GX2SetColorBuffer(cbTV, GX2_RENDER_TARGET_0);
nn::erreula::DrawTV();
// Set our colour buffer's surface format back to what it was before.

View File

@ -46,8 +46,8 @@ main(int argc, char **argv)
}
// Get WHBGfx's colour buffers for proper swkbd rendering
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
WHBLogPrintf("Begin rendering...");
while (WHBProcIsRunning()) {
@ -88,7 +88,7 @@ main(int argc, char **argv)
cbTV->surface.format = GX2_SURFACE_FORMAT_SRGB_R8_G8_B8_A8;
GX2InitColorBufferRegs(cbTV);
GX2SetColorBuffer(cbTV, GX2_RENDER_TARGET_0);
nn::swkbd::DrawTV();
// Set our colour buffer's surface format back to what it was before.