Skip to content

Commit

Permalink
Removed dIsplaying the first item in the status. It was just for debu…
Browse files Browse the repository at this point in the history
…gging...
  • Loading branch information
tgraupmann committed Mar 15, 2015
1 parent 1426176 commit c0de3ed
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions GameMaker/InAppPurchases.gmx/scripts/drawScript.gml
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,7 @@ if (asyncResult != undefined &&
products_length = count;
text_message = "Status: RequestProducts count="+string(count);
if (count > 0) {
var identifier = OuyaSDK_GetAsyncDataArrayString("0", "identifier");
var localPrice = OuyaSDK_GetAsyncDataArrayDouble("0", "localPrice");
text_message = "Status: RequestProducts count="+string(count)+" identifier"+identifier+" localPrice="+string(localPrice);
text_message = "Status: RequestProducts count="+string(count);
}
for (var index = 0; index < products_length; ++index)
{
Expand Down Expand Up @@ -283,9 +281,7 @@ if (asyncResult != undefined &&
receipts_length = count;
text_message = "Status: RequestReceipts count="+string(count);
if (count > 0) {
var identifier = OuyaSDK_GetAsyncDataArrayString("0", "identifier");
var localPrice = OuyaSDK_GetAsyncDataArrayDouble("0", "localPrice");
text_message = "Status: RequestReceipts count="+string(count)+" identifier"+identifier+" localPrice="+string(localPrice);
text_message = "Status: RequestReceipts count="+string(count);
}
for (var index = 0; index < receipts_length; ++index)
{
Expand Down

0 comments on commit c0de3ed

Please sign in to comment.