Skip to content

Commit

Permalink
Fork libtesla and add hack for hiding the overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
nastys committed Mar 11, 2020
1 parent ebcbf89 commit 96cc1e6
Show file tree
Hide file tree
Showing 16 changed files with 8,132 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "libs/libtesla"]
path = libs/libtesla
url = https://github.com/WerWolv/libtesla
[submodule "Atmosphere-libs"]
path = Atmosphere-libs
url = https://github.com/Atmosphere-NX/Atmosphere-libs.git
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MEGAHAKUS 2.1.0
# MEGAHAKUS 2.2.0
A Tesla overlay for 初音ミク Project DIVA MEGA39's.

![screenshot](https://github.com/nastys/MEGAHAKUS/raw/master/preview.jpg)
Expand Down Expand Up @@ -52,6 +52,7 @@ Currently works in handheld mode only unless ``D-pad cursor`` is enabled, and bu
```
Joystick (default)/D-pad: move cursor
L/R/Joystick: hold/push to move faster
L+R: toggle overlay
ZL: left click
ZR: right click
```
Expand Down
1 change: 0 additions & 1 deletion libs/libtesla
Submodule libtesla deleted from 7671be
12 changes: 12 additions & 0 deletions libs/libtesla/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
debug
release
lib
*.bz2

example/build/

*.elf

*.nacp

*.ovl
45 changes: 45 additions & 0 deletions libs/libtesla/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"configurations": [
{
"name": "DKP Aarch64 Windows",
"includePath": [
"C:/devkitPro/devkitA64/aarch64-none-elf/include/**",
"C:/devkitPro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**",
"C:/devkitPro/libnx/include/**",
"C:/devkitPro/portlibs/switch/include/**",
"${workspaceFolder}/include/**"
],
"defines": [
"SWITCH",
"VERSION=\"\"",
"__SWITCH__",
"__aarch64__"
],
"compilerPath": "C:/devkitPro/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
},
{
"name": "DKP Aarch64 Linux",
"includePath": [
"/opt/devkitpro/devkitA64/aarch64-none-elf/include/**",
"/opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**",
"/opt/devkitpro/libnx/include/**",
"/opt/devkitpro/portlibs/switch/include/**",
"${workspaceFolder}/include/**"
],
"defines": [
"SWITCH",
"VERSION=\"\"",
"__SWITCH__",
"__aarch64__"
],
"compilerPath": "/opt/devkitpro/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
56 changes: 56 additions & 0 deletions libs/libtesla/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"files.associations": {
"*.tcc": "cpp",
"algorithm": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"condition_variable": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"exception": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"string": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp",
"map": "cpp"
}
}
Loading

0 comments on commit 96cc1e6

Please sign in to comment.