mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-29 17:54:50 +01:00
Add int64_t support to INI parser (#12374)
This commit is contained in:
committed by
GitHub
parent
6ba6184602
commit
3b60740128
@@ -48,6 +48,11 @@ public:
|
||||
WriteProperty(name, std::to_string(value));
|
||||
}
|
||||
|
||||
void WriteInt64(const std::string& name, int64_t value) override
|
||||
{
|
||||
WriteProperty(name, std::to_string(value));
|
||||
}
|
||||
|
||||
void WriteFloat(const std::string& name, float value) override
|
||||
{
|
||||
WriteProperty(name, std::to_string(value));
|
||||
|
||||
Reference in New Issue
Block a user