Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/474fd81bf685714a45963...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/474fd81bf685714a4596350...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/474fd81bf685714a4596350c6...
The branch, master has been updated
via 474fd81bf685714a4596350c679a1f08d2b00390 (commit)
from d39ae4a10239481a9bf7eb8c9d6688f1e1e7cf39 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=474fd81bf685714a459...
commit 474fd81bf685714a4596350c679a1f08d2b00390
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Amiga: report correct depth
diff --git a/frontends/amiga/rtg.c b/frontends/amiga/rtg.c
index 5e1cac2..8618c0a 100644
--- a/frontends/amiga/rtg.c
+++ b/frontends/amiga/rtg.c
@@ -26,9 +26,6 @@ struct BitMap *ami_rtg_allocbitmap(ULONG width, ULONG height, ULONG
depth,
ULONG flags, struct BitMap *friend, RGBFTYPE format)
{
if(P96Base == NULL) {
-#ifndef __amigaos4__
- if(depth > 8) depth = 8;
-#endif
return AllocBitMap(width, height, depth, flags, friend);
} else {
return p96AllocBitMap(width, height, depth, flags, friend, format);
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/rtg.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/frontends/amiga/rtg.c b/frontends/amiga/rtg.c
index 5e1cac2..8618c0a 100644
--- a/frontends/amiga/rtg.c
+++ b/frontends/amiga/rtg.c
@@ -26,9 +26,6 @@ struct BitMap *ami_rtg_allocbitmap(ULONG width, ULONG height, ULONG
depth,
ULONG flags, struct BitMap *friend, RGBFTYPE format)
{
if(P96Base == NULL) {
-#ifndef __amigaos4__
- if(depth > 8) depth = 8;
-#endif
return AllocBitMap(width, height, depth, flags, friend);
} else {
return p96AllocBitMap(width, height, depth, flags, friend, format);
--
NetSurf Browser