We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2eccdb commit 4be14c4Copy full SHA for 4be14c4
desktop_version/libretro/libretro.c
@@ -77,7 +77,7 @@ retro_get_system_info(struct retro_system_info* info)
77
info->valid_extensions = "zip";
78
info->library_version = "0.1";
79
info->library_name = "vvvvvv";
80
- info->block_extract = false;
+ info->block_extract = true;
81
}
82
83
void
@@ -135,7 +135,7 @@ retro_load_game(const struct retro_game_info* game)
135
chdir(systemdir);
136
chdir("vvvvvv");
137
} else {
138
- chdir(game->path);
+ chdir(SDL_strdup(dirname(game->path)));
139
140
141
game_thread = SDL_CreateThread(game_main, "VVVVVV", NULL);
0 commit comments