Fixed formatting for GfxMode docs.

This commit is contained in:
yellows8 2018-02-13 00:08:23 -05:00
parent e8683f8709
commit 7fa0397c16

View File

@ -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;
/**