Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Missing 'o' in Beefy::BfTokenToString 'goto' ?

Open mingodad opened this issue 3 years ago • 0 comments

Looking through the code I can see in Beefy::BfTokenToString this code that seems to be missing an 'o':

const char* Beefy::BfTokenToString(BfToken token)
{
	switch (token)
	{
...
	case BfToken_Goto:
		return "got";  //!!!<<< it seems that it's missing an 'o' at the end
...
}

mingodad avatar Oct 11 '22 16:10 mingodad