Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/boot/idle.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void Idle_ThreadEntry(void* arg) {
osCreateViManager(OS_PRIORITY_VIMGR);

#if OOT_VERSION >= PAL_1_0
gViConfigFeatures = OS_VI_GAMMA_OFF | OS_VI_DITHER_FILTER_ON;
gViConfigFeatures = OS_VI_GAMMA_OFF | OS_VI_DITHER_FILTER_OFF;
gViConfigXScale = 1.0f;
gViConfigYScale = 1.0f;
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/boot/viconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
s8 D_80009430 = 1;
vu8 gViConfigBlack = true;
u8 gViConfigAdditionalScanLines = 0;
u32 gViConfigFeatures = OS_VI_DITHER_FILTER_ON | OS_VI_GAMMA_OFF;
u32 gViConfigFeatures = OS_VI_DITHER_FILTER_OFF | OS_VI_GAMMA_OFF;
f32 gViConfigXScale = 1.0;
f32 gViConfigYScale = 1.0;

Expand Down
2 changes: 1 addition & 1 deletion src/code/graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void Graph_Init(GraphicsContext* gfxCtx) {
gfxCtx->viMode = NULL;

#if OOT_VERSION < PAL_1_0
gfxCtx->viFeatures = 0;
gfxCtx->viFeatures = OS_VI_GAMMA_OFF | OS_VI_DITHER_FILTER_OFF;
#else
gfxCtx->viFeatures = gViConfigFeatures;
gfxCtx->xScale = gViConfigXScale;
Expand Down