This commit is contained in:
Christian Semmler 2023-06-20 12:04:33 +02:00
parent ad5dd2ba06
commit 63e36a2655
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C

View File

@ -153,7 +153,7 @@ int Isle::ReadRegInt(LPCSTR name, int *out)
{
char buffer[256];
if (Isle::ReadReg(name, buffer, sizeof(buffer))) {
if (ReadReg(name, buffer, sizeof(buffer))) {
*out = atoi(buffer);
return TRUE;
}