summaryrefslogtreecommitdiff
path: root/src/dolphin
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-07 16:36:38 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-07 16:36:38 -0400
commit6eb8518355bc5f783fe24e43306d1a981323504a (patch)
tree6a6780a0cec57edfe8cbfe42ac1d60b7814501b5 /src/dolphin
parentec8db7da22204ee23a95adb1d775b96806cbca4e (diff)
Fix inconsistent indentation
Diffstat (limited to 'src/dolphin')
-rw-r--r--src/dolphin/os/OSRtc.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/dolphin/os/OSRtc.c b/src/dolphin/os/OSRtc.c
index c983f06f..171519fc 100644
--- a/src/dolphin/os/OSRtc.c
+++ b/src/dolphin/os/OSRtc.c
@@ -185,21 +185,21 @@ u32 OSGetEuRgb60Mode() {
}
void OSSetEuRgb60Mode(u32 mode) {
- OSSram *sram;
+ OSSram *sram;
- mode <<= 6;
- mode &= 0x40;
+ mode <<= 6;
+ mode &= 0x40;
- sram = __OSLockSram();
- if (mode == (sram->ntd & 0x40))
- {
- __OSUnlockSram(FALSE);
- return;
- }
+ sram = __OSLockSram();
+ if (mode == (sram->ntd & 0x40))
+ {
+ __OSUnlockSram(FALSE);
+ return;
+ }
- sram->ntd &= ~0x40;
- sram->ntd |= mode;
- __OSUnlockSram(TRUE);
+ sram->ntd &= ~0x40;
+ sram->ntd |= mode;
+ __OSUnlockSram(TRUE);
}
u32 OSGetProgressiveMode() {