Skip to content

Commit b7d6d95

Browse files
committed
Formatting fix
1 parent 4f6d1f7 commit b7d6d95

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

include/nn/swkbd/swkbd_cpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ enum class InputFormType
101101
//! Spaced boxes design with up to 40 characters
102102
Boxes = 0,
103103
//! The page design
104-
Page = 1,
104+
Page = 1,
105105
};
106106

107107
enum class KeyboardLayout

samples/cmake/erreula/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ main(int argc, char **argv)
5151
nn::erreula::AppearErrorViewer(appearArg);
5252

5353
// Get WHBGfx's colour buffers for proper erreula rendering
54-
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
55-
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
54+
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
55+
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
5656

5757
WHBLogPrintf("Begin rendering...");
5858
while (WHBProcIsRunning()) {
@@ -84,7 +84,7 @@ main(int argc, char **argv)
8484
cbTV->surface.format = GX2_SURFACE_FORMAT_SRGB_R8_G8_B8_A8;
8585
GX2InitColorBufferRegs(cbTV);
8686
GX2SetColorBuffer(cbTV, GX2_RENDER_TARGET_0);
87-
87+
8888
nn::erreula::DrawTV();
8989

9090
// Set our colour buffer's surface format back to what it was before.

samples/cmake/swkbd/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ main(int argc, char **argv)
4646
}
4747

4848
// Get WHBGfx's colour buffers for proper swkbd rendering
49-
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
50-
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
49+
GX2ColorBuffer *cbTV = WHBGfxGetTVColourBuffer();
50+
GX2ColorBuffer *cbDRC = WHBGfxGetDRCColourBuffer();
5151

5252
WHBLogPrintf("Begin rendering...");
5353
while (WHBProcIsRunning()) {
@@ -88,7 +88,7 @@ main(int argc, char **argv)
8888
cbTV->surface.format = GX2_SURFACE_FORMAT_SRGB_R8_G8_B8_A8;
8989
GX2InitColorBufferRegs(cbTV);
9090
GX2SetColorBuffer(cbTV, GX2_RENDER_TARGET_0);
91-
91+
9292
nn::swkbd::DrawTV();
9393

9494
// Set our colour buffer's surface format back to what it was before.

0 commit comments

Comments
 (0)