mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Squirrel: fix struct name
bufCopy is actually bufPos as this indicated the current pos in the text buffer as it gets parsed out.
This commit is contained in:
parent
d4f9ac279c
commit
b622854d85
@ -75,13 +75,13 @@ struct SQBufState
|
||||
{
|
||||
const SQChar* buf;
|
||||
const SQChar* bufTail;
|
||||
const SQChar* bufCopy;
|
||||
const SQChar* bufPos;
|
||||
|
||||
SQBufState(const SQChar* code)
|
||||
{
|
||||
buf = code;
|
||||
bufTail = code + strlen(code);
|
||||
bufCopy = code;
|
||||
bufPos = code;
|
||||
}
|
||||
};
|
||||
#endif // SQSTATE_H
|
Loading…
x
Reference in New Issue
Block a user