mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fixed missed rename of 'Read()'
This commit is contained in:
parent
2ee9cce393
commit
5b75903ac2
@ -186,7 +186,7 @@ string CIOStream::ReadString()
|
|||||||
{
|
{
|
||||||
char c;
|
char c;
|
||||||
string result = "";
|
string result = "";
|
||||||
while (!reader.eof() && (c = read<char>()) != '\0')
|
while (!reader.eof() && (c = Read<char>()) != '\0')
|
||||||
{
|
{
|
||||||
result += c;
|
result += c;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user