Skip to content

Commit

Permalink
fixed windows ISO naming for unix
Browse files Browse the repository at this point in the history
  • Loading branch information
WizzardMaker committed Jun 27, 2024
1 parent cfda87c commit 8085023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TeakLibW/TextRes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ char *TEXTRES::GetS(ULONG group, ULONG id) {
long long lGroup = group;
AT_Log(ExcTextResNotFound, reinterpret_cast<char *>(&lGroup), id);

char *defaultText = _strdup("MISSING");
char *defaultText = strdup("MISSING");
return defaultText;
}
return buffer;
Expand Down

0 comments on commit 8085023

Please sign in to comment.