Video: Y/C Update (#743)

Update Y/C Parser
- Added the Y/C tuned phase inc's into the yc.txt file.
- Fixed an issue with the parser handling spaces in the core name
Removed force SOG on CVBS / SVIDEO Modes
This commit is contained in:
MikeS11
2023-02-18 13:22:32 -07:00
committed by GitHub
parent 52237c4d36
commit 60c9f806ea
3 changed files with 245 additions and 5 deletions

View File

@@ -590,7 +590,7 @@ static int yc_parse_mode(char* buf, yc_mode *mode)
int i = 0;
while (1)
{
if (buf[i] == '=' || CHAR_IS_SPACE(buf[i]))
if (buf[i] == '=' || CHAR_IS_LINEEND(buf[i]))
{
buf[i] = 0;
break;