mirror of
https://github.com/wiiu-env/homebrew_launcher.git
synced 2024-11-05 20:45:08 +01:00
fixed not working sendelf/wiiload support
This commit is contained in:
parent
e170e930a2
commit
c2bf18f3af
@ -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.
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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");
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user