mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
5b80116c8d
3 changed files with 4 additions and 4 deletions
|
@ -625,7 +625,7 @@ namespace SDL2
|
|||
ResizeLeft
|
||||
}
|
||||
|
||||
struct WindowPos : int32
|
||||
public struct WindowPos : int32
|
||||
{
|
||||
public const WindowPos Undefined = 0x1FFF0000;
|
||||
public const WindowPos Centered = 0x2FFF0000;
|
||||
|
|
|
@ -2125,7 +2125,7 @@ namespace System
|
|||
return UTF8.Decode(ptr + idx, mLength - idx).c == c;
|
||||
}
|
||||
|
||||
public void ReplaceLargerHelper(String find, String replace)
|
||||
private void ReplaceLargerHelper(String find, String replace)
|
||||
{
|
||||
List<int> replaceEntries = scope List<int>(8192);
|
||||
|
||||
|
|
|
@ -2146,7 +2146,7 @@ void BfParser::NextToken(int endIdx, bool outerIsInterpolate, bool disablePrepro
|
|||
newBlock->SetSrcEnd(mSrcIdx);
|
||||
mSrcIdx--;
|
||||
}
|
||||
else if ((mSyntaxToken == BfSyntaxToken_EOF) || (mSyntaxToken == BfSyntaxToken_StringQuote))
|
||||
else if (mSyntaxToken == BfSyntaxToken_StringQuote)
|
||||
{
|
||||
mSrcIdx--;
|
||||
mPassInstance->FailAfterAt("Expected '}'", mSourceData, newBlock->GetSrcEnd() - 1);
|
||||
|
@ -4205,4 +4205,4 @@ BF_EXPORT void BF_CALLTYPE BfParser_GetLineCharAtIdx(BfParser* bfParser, int idx
|
|||
BF_EXPORT int BF_CALLTYPE BfParser_GetIndexAtLine(BfParser* bfParser, int line)
|
||||
{
|
||||
return bfParser->GetIndexAtLine(line);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue