From 3d0ae50a8987125e367c348835d89a2a74214bd2 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Fri, 23 Feb 2018 12:59:51 -0500 Subject: [PATCH] Updated comment for the GfxMode used by console. --- nx/include/switch/gfx/gfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/gfx/gfx.h b/nx/include/switch/gfx/gfx.h index a7555f03..590f909e 100644 --- a/nx/include/switch/gfx/gfx.h +++ b/nx/include/switch/gfx/gfx.h @@ -14,7 +14,7 @@ /// Same as \ref RGBA8 except with alpha=0xff. #define RGBA8_MAXALPHA(r,g,b) RGBA8(r,g,b,0xff) -/// GfxMode set by \ref gfxSetMode. The default is GfxMode_LinearDouble. Note that the text-console (see console.h) sets this to GfxMode_TiledSingle. +/// GfxMode set by \ref gfxSetMode. The default is GfxMode_LinearDouble. Note that the text-console (see console.h) sets this to GfxMode_TiledDouble. typedef enum { GfxMode_TiledSingle, ///< Single-buffering with raw tiled (block-linear) framebuffer.