Emdashless
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user