1
0
mirror of https://github.com/pumpitupdev/pumptools.git synced 2024-12-18 01:15:52 +01:00

hook/pri: Remove non working window mode option

This commit is contained in:
icex2 2021-03-19 16:27:50 +01:00
parent aa8e30af34
commit 672622ecbc
4 changed files with 0 additions and 21 deletions

View File

@ -1,9 +1,6 @@
# [str]: Path to game settings (SETTINGS) folder # [str]: Path to game settings (SETTINGS) folder
game.settings=./save game.settings=./save
# [bool (0/1)]: Force game into window mode
patch.gfx.windowed=0
# [bool (0/1)]: Enable file call monitoring # [bool (0/1)]: Enable file call monitoring
patch.hook_mon.file=0 patch.hook_mon.file=0

View File

@ -145,10 +145,6 @@ static void prihook_patch_gfx_init(struct prihook_options *options)
log_assert(options); log_assert(options);
patch_gfx_init(); patch_gfx_init();
if (options->patch.gfx.windowed) {
patch_gfx_force_window_mode();
}
} }
static void prihook_patch_main_loop_init(struct prihook_options *options) static void prihook_patch_main_loop_init(struct prihook_options *options)

View File

@ -3,7 +3,6 @@
#include "util/options.h" #include "util/options.h"
#define PRIHOOK_OPTIONS_STR_GAME_SETTINGS "game.settings" #define PRIHOOK_OPTIONS_STR_GAME_SETTINGS "game.settings"
#define PRIHOOK_OPTIONS_STR_PATCH_GFX_WINDOWED "patch.gfx.windowed"
#define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE "patch.hook_mon.file" #define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE "patch.hook_mon.file"
#define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FS "patch.hook_mon.fs" #define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FS "patch.hook_mon.fs"
#define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_IO "patch.hook_mon.io" #define PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_IO "patch.hook_mon.io"
@ -31,13 +30,6 @@ const struct util_options_def prihook_options_def[] = {
.type = UTIL_OPTIONS_TYPE_STR, .type = UTIL_OPTIONS_TYPE_STR,
.default_value.str = "./save", .default_value.str = "./save",
}, },
{
.name = PRIHOOK_OPTIONS_STR_PATCH_GFX_WINDOWED,
.description = "Force game into window mode",
.param = 'w',
.type = UTIL_OPTIONS_TYPE_BOOL,
.default_value.b = false,
},
{ {
.name = PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE, .name = PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE,
.description = "Enable file call monitoring", .description = "Enable file call monitoring",
@ -169,8 +161,6 @@ bool prihook_options_init(
options->game.settings = options->game.settings =
util_options_get_str(options_opt, PRIHOOK_OPTIONS_STR_GAME_SETTINGS); util_options_get_str(options_opt, PRIHOOK_OPTIONS_STR_GAME_SETTINGS);
options->patch.gfx.windowed = util_options_get_bool(
options_opt, PRIHOOK_OPTIONS_STR_PATCH_GFX_WINDOWED);
options->patch.hook_mon.file = util_options_get_bool( options->patch.hook_mon.file = util_options_get_bool(
options_opt, PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE); options_opt, PRIHOOK_OPTIONS_STR_PATCH_HOOK_MON_FILE);
options->patch.hook_mon.fs = options->patch.hook_mon.fs =

View File

@ -12,10 +12,6 @@ struct prihook_options {
} game; } game;
struct patch { struct patch {
struct gfx {
bool windowed;
} gfx;
struct hook_mon { struct hook_mon {
bool file; bool file;
bool fs; bool fs;