fixed not working sendelf/wiiload support

This commit is contained in:
dimok789 2016-11-27 22:48:44 +01:00
parent e170e930a2
commit c2bf18f3af
4 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
<app version="1">
<name>Homebrew Launcher</name>
<coder>Dimok</coder>
<version>2.0</version>
<release_date>20161120210000</release_date>
<version>2.1</version>
<release_date>20161120270000</release_date>
<short_description>WiiU Homebrew Launcher</short_description>
<long_description>Loads WiiU homebrew from SD card and from network.

View File

@ -7,7 +7,7 @@ extern "C" {
#include "os_defs.h"
#define HBL_VERSION "v2.0"
#define HBL_VERSION "v2.1"
#define HBL_VERSION_INT 200
#define CAFE_OS_SD_PATH "/vol/external01"

View File

@ -1,3 +1,4 @@
#include <nsysnet/socket.h>
#include "Application.h"
#include "system/memory.h"
#include "utils/logger.h"
@ -13,6 +14,7 @@ extern "C" int Menu_Main(void)
//!*******************************************************************
//! Initialize function pointers *
//!*******************************************************************
socket_lib_init();
//! do OS (for acquire) and sockets first so we got logging
log_init("192.168.178.3");

View File

@ -14,8 +14,6 @@ static volatile int log_lock = 0;
void log_init(const char * ipString)
{
socket_lib_init();
log_socket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (log_socket < 0)
return;