Skip to content

Commit

Permalink
fix: start at the intro scene in online mode as well
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed Apr 20, 2024
1 parent 73c48a5 commit b4849d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sk_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void sk_state_destroy_offline(sk_state *s) {
sk_state sk_state_create_online(u8 lobby_id) {
return (sk_state) {
.is_online = 1,
.curr_scene = sk_scene_create(SK_SCENE_KIND_MAIN_MENU),
.curr_scene = sk_scene_create(SK_SCENE_KIND_INTRO),
.lobby = sk_lobby_create(lobby_id)
};
}

0 comments on commit b4849d7

Please sign in to comment.