mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Buildfix for gcc.
At least our Travis gccs are hitting an ICE.
This commit is contained in:
parent
b0ac553e77
commit
c0c43acb6e
@ -76,7 +76,7 @@ namespace Reporting
|
||||
int int2;
|
||||
int int3;
|
||||
};
|
||||
static Payload payloadBuffer[PAYLOAD_BUFFER_SIZE] = {};
|
||||
static Payload payloadBuffer[PAYLOAD_BUFFER_SIZE];
|
||||
static int payloadBufferPos = 0;
|
||||
|
||||
// Returns the full host (e.g. report.ppsspp.org:80.)
|
||||
@ -353,6 +353,9 @@ namespace Reporting
|
||||
postdata.Finish();
|
||||
SendReportRequest("/report/compat", postdata.ToString(), postdata.GetMimeType());
|
||||
break;
|
||||
|
||||
case RequestType::NONE:
|
||||
break;
|
||||
}
|
||||
|
||||
payload.type = RequestType::NONE;
|
||||
|
Loading…
Reference in New Issue
Block a user