This commit is contained in:
jl777
2019-03-25 09:58:21 -11:00
parent e774c89ab5
commit e7031c2964

View File

@@ -1679,12 +1679,15 @@ void games_packitemstr(char *packitemstr,struct games_packitem *item)
#include <memory.h> #include <memory.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <curl/curl.h>
#include <curl/easy.h>
#include "../core_io.h" #include "../core_io.h"
#include "../wallet/wallet.h" #include "../wallet/wallet.h"
#include <univalue.h> #include <univalue.h>
#define inline
#include <curl/curl.h>
#include <curl/easy.h>
#undef inline
char USERPASS[8192]; uint16_t GAMES_PORT; char USERPASS[8192]; uint16_t GAMES_PORT;
extern char Gametxidstr[67]; extern char Gametxidstr[67];
@@ -3475,7 +3478,7 @@ int tetris(int argc, char **argv)
tetris_move move = TM_NONE; tetris_move move = TM_NONE;
bool running = true; bool running = true;
WINDOW *board, *next, *hold, *score; WINDOW *board, *next, *hold, *score;
int32_t c; uint256 gametxid; std::vector<uint8_t> payload; uint32_t eventid = 0; int32_t c; uint256 gametxid; uint32_t eventid = 0;
// Load file if given a filename. // Load file if given a filename.
if (argc >= 2) { if (argc >= 2) {
FILE *f = fopen(argv[1], "r"); FILE *f = fopen(argv[1], "r");
@@ -3516,8 +3519,7 @@ int tetris(int argc, char **argv)
doupdate(); doupdate();
sleep_milli(10); sleep_milli(10);
c = getch(); c = getch();
payload[0] = c; issue_games_events(gametxid,eventid,c);
issue_games_events(gametxid,eventid,payload);
eventid++; eventid++;
switch ( c ) switch ( c )
{ {