Skip to content

Commit 58f49d4

Browse files
committed
Version 1.8.0
1 parent a8afee3 commit 58f49d4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/av.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "settings.h"
1111
#include "connection.h"
1212
#include "decoder.h"
13+
#include <stdint.h>
1314

1415
extern int a_running;
1516
extern int v_running;

src/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef _COMMON_H_
1010
#define _COMMON_H_
1111

12-
#define APP_VER_INT 173
13-
#define APP_VER_STR "1.7.3"
12+
#define APP_VER_INT 180
13+
#define APP_VER_STR "1.8.0"
1414

1515
#define MSG_ERROR(str) ShowError("Error",str)
1616
#define MSG_LASTERROR(str) ShowError(str,strerror(errno))

src/droidcam.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include <gtk/gtk.h>
1010
#include <libappindicator/app-indicator.h>
1111
#include <X11/Xlib.h>
12+
#include <stdint.h>
1213

1314
#include "common.h"
1415
#include "settings.h"
@@ -149,7 +150,7 @@ static void Start(void) {
149150

150151
if (g_settings.connection == CB_RADIO_ADB) {
151152
if (CheckAdbDevices(port) < 0) return;
152-
ip = "127.0.0.1";
153+
ip = ADB_LOCALHOST_IP;
153154
} else if (g_settings.connection == CB_RADIO_IOS) {
154155
s = CheckiOSDevices(port);
155156
if (s <= 0) {

0 commit comments

Comments
 (0)