Welcome Luma3DS

This commit is contained in:
Aurora
2016-04-23 01:43:11 +02:00
parent c14526068a
commit 3fd4603553
31 changed files with 28 additions and 82 deletions

View File

@@ -7,7 +7,7 @@
static u32 loadPayload(const char *pattern)
{
char path[30] = "/aurei/payloads";
char path[30] = "/luma/payloads";
DIR dir;
FILINFO info;
@@ -19,11 +19,11 @@ static u32 loadPayload(const char *pattern)
if(result != FR_OK || !info.fname[0])
return 0;
path[15] = '/';
path[14] = '/';
u32 i;
for(i = 0; info.fname[i]; i++)
path[16 + i] = info.fname[i];
path[16 + i] = '\0';
path[15 + i] = info.fname[i];
path[15 + i] = '\0';
FIL payload;
unsigned int br;

View File

@@ -1,9 +1,3 @@
/*
* types.h
* by Reisyukaku
* Copyright (c) 2015 All Rights Reserved
*/
#pragma once
#include <stdint.h>