diff options
author | rubidium <rubidium@openttd.org> | 2012-01-02 20:39:50 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2012-01-02 20:39:50 +0000 |
commit | 37b136576df138bc4409ca23c59a8379b83ddafb (patch) | |
tree | 653f4d47564fcd962a39d55a105f2ddac3b95d8b /src/ai | |
parent | caa5762636a703be9c0573e33bfff53a68ac2c6a (diff) | |
download | openttd-37b136576df138bc4409ca23c59a8379b83ddafb.tar.xz |
(svn r23718) -Fix [FS#4936]: rescanai caused crash when the AI settings of an AI was opened
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_core.cpp b/src/ai/ai_core.cpp index 3a337ab0b..16bf96dc6 100644 --- a/src/ai/ai_core.cpp +++ b/src/ai/ai_core.cpp @@ -333,7 +333,7 @@ InvalidateWindowData(WC_AI_LIST, 0, 1); SetWindowClassesDirty(WC_AI_DEBUG); - SetWindowDirty(WC_AI_SETTINGS, 0); + InvalidateWindowClassesData(WC_AI_SETTINGS); } #if defined(ENABLE_NETWORK) |