summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-07 23:09:40 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-07 23:09:40 +0100
commit61c268269aa5b91d03793c0a5906e9cb2ad91766 (patch)
tree6e0428a7c3dcba1e64e5e6193928dbd7cc7c6ebf /amiga/gui.c
parent67488450424a7a8be38c2e007c6d0e94e6c0834b (diff)
downloadnetsurf-61c268269aa5b91d03793c0a5906e9cb2ad91766.tar.gz
netsurf-61c268269aa5b91d03793c0a5906e9cb2ad91766.tar.bz2
display depth gadget on screenmode requester
Diffstat (limited to 'amiga/gui.c')
-rwxr-xr-xamiga/gui.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 6409ed550..03a2b7dbf 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -603,8 +603,9 @@ void ami_openscreen(void)
if(screenmodereq = AllocAslRequest(ASL_ScreenModeRequest,NULL))
{
if(AslRequestTags(screenmodereq,
- ASLSM_MinDepth,0,
- ASLSM_MaxDepth,32,
+ ASLSM_MinDepth, 0,
+ ASLSM_MaxDepth, 32,
+ ASLSM_DoDepth, TRUE,
TAG_DONE))
{
char *modeid = malloc(20);