Fix send-exec.py 3dsx filename

Leftover from when the repo was named citra-hwtests.
This commit is contained in:
archshift 2014-12-10 22:12:46 -08:00
parent 38a0c47d43
commit 348d942a60

View File

@ -11,7 +11,7 @@ import time
TCP_IP = '192.168.xx.xx' TCP_IP = '192.168.xx.xx'
TCP_PORT = 9000 TCP_PORT = 9000
MESSAGE = open("citra-hwtests.3dsx", "rb").read(); MESSAGE = open("hwtests.3dsx", "rb").read();
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT)) s.connect((TCP_IP, TCP_PORT))