diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-18 10:55:28 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-18 10:55:28 +0000 |
commit | 4f7f9544e5dbf992599865243aee4c6e2a5b5f8e (patch) | |
tree | 16277de9ce81724cd1ac5cc0dba863d67e01f4d9 /Game/Code/Classes | |
parent | 56ce1cf3c09f0ebad019bb1f158d335e41f3d2d6 (diff) | |
download | usdx-4f7f9544e5dbf992599865243aee4c6e2a5b5f8e.tar.gz usdx-4f7f9544e5dbf992599865243aee4c6e2a5b5f8e.tar.xz usdx-4f7f9544e5dbf992599865243aee4c6e2a5b5f8e.zip |
Added ability to take a Screenshot with the Print Key from every Screen in the Game
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@219 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Classes/UMain.pas | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Game/Code/Classes/UMain.pas b/Game/Code/Classes/UMain.pas index 47860198..3bf7d197 100644 --- a/Game/Code/Classes/UMain.pas +++ b/Game/Code/Classes/UMain.pas @@ -160,13 +160,16 @@ Begin End; // With}
SDL_KEYDOWN:
begin
+ //ScreenShot hack. If Print is pressed-> Make screenshot and Save to Screenshots Path
+ if (Event.key.keysym.sym = SDLK_SYSREQ) then
+ Display.ScreenShot
+
// popup hack... if there is a visible popup then let it handle input instead of underlying screen
// shoud be done in a way to be sure the topmost popup has preference (maybe error, then check)
- if (ScreenPopupError <> NIL) and (ScreenPopupError.Visible) then
+ else if (ScreenPopupError <> NIL) and (ScreenPopupError.Visible) then
done := not ScreenPopupError.ParseInput(Event.key.keysym.sym, Event.key.keysym.unicode, True)
else if (ScreenPopupCheck <> NIL) AND (ScreenPopupCheck.Visible) then
done := not ScreenPopupCheck.ParseInput(Event.key.keysym.sym, Event.key.keysym.unicode, True)
-
// end of popup hack
else
|