mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-04-19 23:10:18 +00:00
Change errorCode from long to int
This commit is contained in:
@@ -251,7 +251,7 @@ void ClStageComplete(int stage)
|
||||
[_callbacks stageComplete:LiGetStageName(stage)];
|
||||
}
|
||||
|
||||
void ClStageFailed(int stage, long errorCode)
|
||||
void ClStageFailed(int stage, int errorCode)
|
||||
{
|
||||
[_callbacks stageFailed:LiGetStageName(stage) withError:errorCode];
|
||||
}
|
||||
@@ -261,7 +261,7 @@ void ClConnectionStarted(void)
|
||||
[_callbacks connectionStarted];
|
||||
}
|
||||
|
||||
void ClConnectionTerminated(long errorCode)
|
||||
void ClConnectionTerminated(int errorCode)
|
||||
{
|
||||
[_callbacks connectionTerminated: errorCode];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user