mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Fixing mkldscript.c for mac (#563)
This commit is contained in:
parent
a8ae9f48b7
commit
60b1f5dd41
1 changed files with 6 additions and 1 deletions
|
@ -194,10 +194,15 @@ static void parse_rom_spec(char *spec)
|
|||
while (line[0] != 0)
|
||||
{
|
||||
char *nextLine = line_split(line);
|
||||
char* stmtName;
|
||||
|
||||
if (line[0] != 0)
|
||||
{
|
||||
char *stmtName = skip_whitespace(line);
|
||||
stmtName = skip_whitespace(line);
|
||||
}
|
||||
|
||||
if (line[0] != 0 && stmtName[0] != 0)
|
||||
{
|
||||
char *args = token_split(stmtName);
|
||||
unsigned int stmt;
|
||||
|
||||
|
|
Loading…
Reference in a new issue