summaryrefslogtreecommitdiff
path: root/plugins/VersionInfo/src/hooked_events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/VersionInfo/src/hooked_events.cpp')
-rw-r--r--plugins/VersionInfo/src/hooked_events.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/VersionInfo/src/hooked_events.cpp b/plugins/VersionInfo/src/hooked_events.cpp
index 6e9b74d5f6..d718db4a09 100644
--- a/plugins/VersionInfo/src/hooked_events.cpp
+++ b/plugins/VersionInfo/src/hooked_events.cpp
@@ -36,8 +36,7 @@ int OnModulesLoaded(WPARAM wParam, LPARAM lParam)
int OnOptionsInitialise(WPARAM wParam, LPARAM lParam)
{
- OPTIONSDIALOGPAGE odp = { 0 };
- odp.cbSize = sizeof(odp);
+ OPTIONSDIALOGPAGE odp = { sizeof(odp) };
odp.position = 100000000;
odp.hInstance = hInst;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_VERSIONINFO);
@@ -46,8 +45,6 @@ int OnOptionsInitialise(WPARAM wParam, LPARAM lParam)
odp.groupPosition = 910000000;
odp.flags = ODPF_BOLDGROUPS;
odp.pfnDlgProc = DlgProcOpts;
-
Options_AddPage(wParam, &odp);
-
return 0;
} \ No newline at end of file