Fix spacing

This commit is contained in:
cam900 2022-03-03 03:12:10 +09:00
parent d4d1ade513
commit 87561bf9cf
1 changed files with 7 additions and 7 deletions

View File

@ -510,16 +510,16 @@ void DivPlatformC64::setChipModel(bool is6581) {
void DivPlatformC64::setFlags(unsigned int flags) { void DivPlatformC64::setFlags(unsigned int flags) {
switch (flags&0xf) { switch (flags&0xf) {
case 0x0: // NTSC C64 case 0x0: // NTSC C64
rate=COLOR_NTSC*2.0/7.0; rate=COLOR_NTSC*2.0/7.0;
break; break;
case 0x1: // PAL C64 case 0x1: // PAL C64
rate=COLOR_PAL*2.0/9.0; rate=COLOR_PAL*2.0/9.0;
break; break;
case 0x2: // SSI 2001 case 0x2: // SSI 2001
default: default:
rate=14318180.0/16.0; rate=14318180.0/16.0;
break; break;
} }
chipClock=rate; chipClock=rate;
} }