Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aramg committed Jul 29, 2021
1 parent a8afee3 commit 58f49d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/av.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "settings.h"
#include "connection.h"
#include "decoder.h"
#include <stdint.h>

extern int a_running;
extern int v_running;
Expand Down
4 changes: 2 additions & 2 deletions src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef _COMMON_H_
#define _COMMON_H_

#define APP_VER_INT 173
#define APP_VER_STR "1.7.3"
#define APP_VER_INT 180
#define APP_VER_STR "1.8.0"

#define MSG_ERROR(str) ShowError("Error",str)
#define MSG_LASTERROR(str) ShowError(str,strerror(errno))
Expand Down
3 changes: 2 additions & 1 deletion src/droidcam.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <gtk/gtk.h>
#include <libappindicator/app-indicator.h>
#include <X11/Xlib.h>
#include <stdint.h>

#include "common.h"
#include "settings.h"
Expand Down Expand Up @@ -149,7 +150,7 @@ static void Start(void) {

if (g_settings.connection == CB_RADIO_ADB) {
if (CheckAdbDevices(port) < 0) return;
ip = "127.0.0.1";
ip = ADB_LOCALHOST_IP;
} else if (g_settings.connection == CB_RADIO_IOS) {
s = CheckiOSDevices(port);
if (s <= 0) {
Expand Down

0 comments on commit 58f49d4

Please sign in to comment.