mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-29 01:35:06 +01:00
Fix arguments to main()
This commit is contained in:
committed by
Michał Janiszewski
parent
6a66ef8668
commit
8271da85a2
@@ -150,7 +150,7 @@ namespace OpenRCT2
|
||||
return _uiContext;
|
||||
}
|
||||
|
||||
sint32 RunOpenRCT2(int argc, char * * argv) override
|
||||
sint32 RunOpenRCT2(int argc, const char * * argv) override
|
||||
{
|
||||
if (Initialise())
|
||||
{
|
||||
|
||||
@@ -84,7 +84,7 @@ namespace OpenRCT2
|
||||
virtual Audio::IAudioContext * GetAudioContext() abstract;
|
||||
virtual Ui::IUiContext * GetUiContext() abstract;
|
||||
|
||||
virtual sint32 RunOpenRCT2(int argc, char * * argv) abstract;
|
||||
virtual sint32 RunOpenRCT2(int argc, const char * * argv) abstract;
|
||||
|
||||
virtual bool Initialise() abstract;
|
||||
virtual bool LoadParkFromFile(const std::string &path, bool loadTitleScreenOnFail = false) abstract;
|
||||
|
||||
Reference in New Issue
Block a user