Skip to content

Commit

Permalink
Fixed default priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Jan 23, 2021
1 parent e0cd52c commit f5868dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/osdep/amiberry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1731,8 +1731,8 @@ void target_default_options(struct uae_prefs* p, int type)
p->start_minimized = false;
p->start_uncaptured = false;
p->active_capture_priority = 1;
p->inactive_priority = 2;
p->minimized_priority = 3;
p->inactive_priority = 0;
p->minimized_priority = 0;
//p->notaskbarbutton = false;
//p->nonotificationicon = false;
p->main_alwaysontop = false;
Expand Down
4 changes: 2 additions & 2 deletions src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)

#define AMIBERRYVERSION _T("Amiberry beta (2021-01-22)")
#define AMIBERRYDATE MAKEBD(2021, 1, 22)
#define AMIBERRYVERSION _T("Amiberry beta (2021-01-23)")
#define AMIBERRYDATE MAKEBD(2021, 1, 23)

#define IHF_WINDOWHIDDEN 6

Expand Down

0 comments on commit f5868dc

Please sign in to comment.