Browse Source

Change data package filename

master
C. J. Howard 2 years ago
parent
commit
e7bda66406
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/game/state/boot.cpp
  2. +1
    -1
      src/game/state/main-menu.cpp

+ 1
- 1
src/game/state/boot.cpp View File

@ -294,7 +294,7 @@ void boot::setup_resources()
} }
else else
{ {
ctx.data_package_path = ctx.data_path / "data.zip";
ctx.data_package_path = ctx.data_path / "antkeeper.dat";
} }
// Mount mods // Mount mods

+ 1
- 1
src/game/state/main-menu.cpp View File

@ -224,7 +224,7 @@ main_menu::main_menu(game::context& ctx, bool fade_in):
if (fade_in) if (fade_in)
{ {
// Fade in from black // Fade in from black
ctx.fade_transition->transition(0.5f, true, ease<float>::out_cubic);
ctx.fade_transition->transition(1.0f, true, ease<float>::out_cubic);
} }
else else
{ {

Loading…
Cancel
Save