Emdashless

This commit is contained in:
2026-06-07 21:27:59 -05:00
parent dc41c0e302
commit be68fe5a35
40 changed files with 117 additions and 107 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ errorret_t assetInitDolphinDVD(void) {
while(pos < rootSize) {
u8 recLen = dir[pos];
if(recLen == 0) {
// Sector padding skip to the start of the next sector.
// Sector padding - skip to the start of the next sector.
pos = (
pos + (ASSET_DOLPHIN_DVD_SECTOR_SIZE - 1u)
) & ~(ASSET_DOLPHIN_DVD_SECTOR_SIZE - 1u);
+2 -2
View File
@@ -114,12 +114,12 @@ void logError(const char_t *message, ...) {
va_end(copy);
va_end(args);
// PAD_Init is idempotent safe even if inputInit already called it,
// PAD_Init is idempotent - safe even if inputInit already called it,
// and handles the case where the error occurred before inputInit ran.
PAD_Init();
while(SYS_MainLoop()) {
PAD_ScanPads();
// START button matches the RAGEQUIT bind allows exit on GC controller
// START button matches the RAGEQUIT bind - allows exit on GC controller
// when there is no Wiimote HOME button available.
if(PAD_ButtonsDown(0) & PAD_BUTTON_START) break;
VIDEO_WaitVSync();