Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion library/include/borealis/platforms/switch/switch_video.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include <borealis/core/video.hpp>
#include <deko3d.hpp>
#include <nanovg/dk_renderer.hpp>
#include <optional>

typedef Event _LibNXEvent; // "Event" alone clashes with brls::Event

Expand Down
4 changes: 2 additions & 2 deletions library/lib/extern/nanovg-deko3d/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = https://github.com/Adubbz/nanovg-deko3d
branch = master
commit = a8c9778aff08420b5b4af7b54bef5d4f3b5ac568
commit = bb69eb5f6a7e63e1adedca11249f421a97f6f83a
parent = c2a0480d90d68d69bcfd477a5b07fb72c3671a91
method = merge
cmdver = 0.4.0
cmdver = 0.4.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <deko3d.hpp>
#include <map>
#include <memory>
#include <optional>
#include <vector>

#include "framework/CDescriptorSet.h"
Expand Down
2 changes: 1 addition & 1 deletion library/lib/platforms/switch/swkbd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static SwkbdConfig createSwkbdBaseConfig(std::string headerText, std::string sub
swkbdConfigSetSubText(&config, subText.c_str());
swkbdConfigSetStringLenMax(&config, maxStringLength);
swkbdConfigSetInitialText(&config, initialText.c_str());
swkbdConfigSetStringLenMaxExt(&config, 1);
swkbdConfigSetStringLenMin(&config, 1);
swkbdConfigSetBlurBackground(&config, true);

return config;
Expand Down