diff --git a/include/nn/swkbd/swkbd_cpp.h b/include/nn/swkbd/swkbd_cpp.h index 9e4d7dbd..42a05e6f 100644 --- a/include/nn/swkbd/swkbd_cpp.h +++ b/include/nn/swkbd/swkbd_cpp.h @@ -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 diff --git a/samples/cmake/erreula/main.cpp b/samples/cmake/erreula/main.cpp index ebbbf77d..260ff5c7 100644 --- a/samples/cmake/erreula/main.cpp +++ b/samples/cmake/erreula/main.cpp @@ -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. diff --git a/samples/cmake/swkbd/main.cpp b/samples/cmake/swkbd/main.cpp index 9922665e..9f8cbaad 100644 --- a/samples/cmake/swkbd/main.cpp +++ b/samples/cmake/swkbd/main.cpp @@ -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.