diff options
author | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-02-20 10:58:21 +0000 |
---|---|---|
committer | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-02-20 10:58:21 +0000 |
commit | 48cb62d84f8bd2e8ef51be897370d4efbd1324f7 (patch) | |
tree | bdbc1fb6a0d15530894f9f3c5a6174271852ef73 /Game/Code/Screens/UScreenOptionsGame.pas | |
parent | 7fb77c1590ddf7f26964653261baa88317d4dc05 (diff) | |
download | usdx-48cb62d84f8bd2e8ef51be897370d4efbd1324f7.tar.gz usdx-48cb62d84f8bd2e8ef51be897370d4efbd1324f7.tar.xz usdx-48cb62d84f8bd2e8ef51be897370d4efbd1324f7.zip |
all screens now inherit their OnShow
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@870 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Screens/UScreenOptionsGame.pas')
-rw-r--r-- | Game/Code/Screens/UScreenOptionsGame.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Game/Code/Screens/UScreenOptionsGame.pas b/Game/Code/Screens/UScreenOptionsGame.pas index 15b538a5..394b28a2 100644 --- a/Game/Code/Screens/UScreenOptionsGame.pas +++ b/Game/Code/Screens/UScreenOptionsGame.pas @@ -106,6 +106,8 @@ end; procedure TScreenOptionsGame.onShow;
begin
+ inherited;
+
// Interaction := 0;
end;
|