From 1df3d9a40d1ecccd7530623893a431e6d5403229 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Mon, 10 Feb 2020 15:12:22 +1100 Subject: [PATCH] whb/gfx: Capitalise v in WHBGfxGetTVColourBuffer All the other public whb/gfx functions capitalise DRC and TV, so do that here. --- libraries/libwhb/include/whb/gfx.h | 2 +- libraries/libwhb/src/gfx.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libwhb/include/whb/gfx.h b/libraries/libwhb/include/whb/gfx.h index 376ff50..7cde90e 100644 --- a/libraries/libwhb/include/whb/gfx.h +++ b/libraries/libwhb/include/whb/gfx.h @@ -93,7 +93,7 @@ BOOL WHBGfxFreeTexture(GX2Texture *texture); GX2ColorBuffer * -WHBGfxGetTvColourBuffer(); +WHBGfxGetTVColourBuffer(); GX2DepthBuffer * WHBGfxGetTVDepthBuffer(); diff --git a/libraries/libwhb/src/gfx.c b/libraries/libwhb/src/gfx.c index dccced4..a88bda5 100644 --- a/libraries/libwhb/src/gfx.c +++ b/libraries/libwhb/src/gfx.c @@ -542,7 +542,7 @@ WHBGfxFinishRenderTV() } GX2ColorBuffer * -WHBGfxGetTvColourBuffer() +WHBGfxGetTVColourBuffer() { return &sTvColourBuffer; }