single player + theme update

This commit is contained in:
thecozies
2025-12-04 08:01:55 -06:00
parent 7d402a5a2d
commit dd9cab3829
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -637,7 +637,7 @@ int main(int argc, char** argv) {
banjo::register_bk_patches();
recomputil::init_extended_actor_data();
recompinput::players::set_max_number_of_players(4);
recompinput::players::set_single_player_mode(true);
banjo::init_config();
+2 -2
View File
@@ -5,8 +5,8 @@ void recomptheme::set_custom_theme() {
recompui::theme::set_theme_color(recompui::theme::color::Background1, recompui::Color{10, 10, 11, 255});
recompui::theme::set_theme_color(recompui::theme::color::Background2, recompui::Color{19, 20, 21, 255});
recompui::theme::set_theme_color(recompui::theme::color::Background3, recompui::Color{27, 27, 29, 255});
recompui::theme::set_theme_color(recompui::theme::color::BGOverlay, recompui::Color{199, 200, 204, 26});
recompui::theme::set_theme_color(recompui::theme::color::ModalOverlay, recompui::Color{10, 10, 11, 229});
recompui::theme::set_theme_color(recompui::theme::color::BGOverlay, recompui::Color{199, 200, 204, 26}); // actually the overlay for the modal
recompui::theme::set_theme_color(recompui::theme::color::ModalOverlay, recompui::Color{10, 10, 11, 242}); // actually the background color of the modal itself
recompui::theme::set_theme_color(recompui::theme::color::BGShadow, recompui::Color{0, 0, 0, 89});
recompui::theme::set_theme_color(recompui::theme::color::BGShadow2, recompui::Color{10, 10, 11, 184});
recompui::theme::set_theme_color(recompui::theme::color::Text, recompui::Color{242, 242, 242, 255});