1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Adjusted style.

This commit is contained in:
Oliver Schmidt 2018-03-30 00:11:40 +02:00 committed by GitHub
parent e2b38c96f8
commit a7ae8e0a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,12 +28,12 @@ void main (void)
if (!ext || strcasecmp (ext, ".dhgr"))
continue;
hgr = open(ent->d_name, O_RDONLY);
hgr = open (ent->d_name, O_RDONLY);
POKE (0xC055, 0);
read(hgr, (void*)0x2000, 0x2000);
read (hgr, (void*)0x2000, 0x2000);
POKE (0xC054, 0);
read(hgr, (void*)0x2000, 0x2000);
close(hgr);
read (hgr, (void*)0x2000, 0x2000);
close (hgr);
if (cgetc () == '\r')
break;