From 7fa0397c16e38ba1ec5e5a7f2331a3b1b10bd91a Mon Sep 17 00:00:00 2001 From: yellows8 Date: Tue, 13 Feb 2018 00:08:23 -0500 Subject: [PATCH] Fixed formatting for GfxMode docs. --- nx/include/switch/gfx/gfx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/gfx/gfx.h b/nx/include/switch/gfx/gfx.h index 2dc42e9a..f8968b6c 100644 --- a/nx/include/switch/gfx/gfx.h +++ b/nx/include/switch/gfx/gfx.h @@ -17,9 +17,9 @@ /// GfxMode set by \ref gfxSetMode. The default is GfxMode_LinearDouble. Note that the text-console (see console.h) sets this to GfxMode_TiledSingle. typedef enum { - GfxMode_TiledSingle, /// Single-buffering with raw tiled (block-linear) framebuffer. - GfxMode_TiledDouble, /// Double-buffering with raw tiled (block-linear) framebuffer. - GfxMode_LinearDouble /// Double-buffering with linear framebuffer, which is transferred to the actual framebuffer by \ref gfxFlushBuffers(). + GfxMode_TiledSingle, ///< Single-buffering with raw tiled (block-linear) framebuffer. + GfxMode_TiledDouble, ///< Double-buffering with raw tiled (block-linear) framebuffer. + GfxMode_LinearDouble ///< Double-buffering with linear framebuffer, which is transferred to the actual framebuffer by \ref gfxFlushBuffers(). } GfxMode; /**