From 3e3c5dcb3e3281eed25c8bbb1a17727320868729 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Mon, 27 Apr 2026 20:45:54 +0200 Subject: [PATCH] Initial commit --- .gitignore | 8 +++++++- Makefile | 4 ++-- src/main.cpp | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3cefff0..0fb2179 100644 --- a/.gitignore +++ b/.gitignore @@ -111,7 +111,8 @@ dkms.conf .LSOverride # Icon must end with two \r -Icon +Icon + # Thumbnails ._* @@ -161,3 +162,8 @@ $RECYCLE.BIN/ # ---> Build build/ build-*/ + +# ---> 3DS +*.elf +*.3dsx +*.smdh diff --git a/Makefile b/Makefile index 632882b..4d90c23 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,9 @@ include $(DEVKITARM)/3ds_rules #--------------------------------------------------------------------------------- TARGET := $(notdir $(CURDIR)) BUILD := build -SOURCES := source +SOURCES := src DATA := data -INCLUDES := include +INCLUDES := src/includes GRAPHICS := gfx GFXBUILD := $(BUILD) #ROMFS := romfs diff --git a/src/main.cpp b/src/main.cpp index 0e004b5..750b696 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ -#include +#include <3ds.h> -int main() { +int main( int argc, char* argv[] ) { return 0; }