summaryrefslogtreecommitdiff
path: root/src/code/z_view.c
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2023-09-16 22:16:58 +0100
committerGitHub <noreply@github.com>2023-09-16 17:16:58 -0400
commit9b207c356a66aec59815cbbd557f40d48d7cccdd (patch)
treec21d897790081774101831ac610682317ef5a149 /src/code/z_view.c
parent239a172114b891fffe7af21777dc5313f0de9441 (diff)
Document Framebuffer Filters, VisCvg and VisZbuf (#1534)
* Document z_viscvg and z_viszbuf Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Few more notes * Some more notes Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> * Review * Americanisation, FB RGB * Oops * Review * Minor documentation modifications * Header, base struct and enums Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> * functions.h fix * Suggested changes, further adjustments to file doc comments * Further suggested changes, standardize capitalization of gfxP * g --------- Co-authored-by: Elliptic Ellipsis <elliptic.ellipsis@gmail.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
Diffstat (limited to 'src/code/z_view.c')
-rw-r--r--src/code/z_view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_view.c b/src/code/z_view.c
index 328441150..117957d1b 100644
--- a/src/code/z_view.c
+++ b/src/code/z_view.c
@@ -539,8 +539,8 @@ s32 View_UpdateViewingMatrix(View* view) {
return 1;
}
-s32 View_ApplyTo(View* view, s32 mask, Gfx** gfxp) {
- Gfx* gfx = *gfxp;
+s32 View_ApplyTo(View* view, s32 mask, Gfx** gfxP) {
+ Gfx* gfx = *gfxP;
GraphicsContext* gfxCtx = view->gfxCtx;
s32 width;
s32 height;
@@ -606,7 +606,7 @@ s32 View_ApplyTo(View* view, s32 mask, Gfx** gfxp) {
}
view->flags = 0;
- *gfxp = gfx;
+ *gfxP = gfx;
return 1;
}