forked from chocolate-doom/chocolate-doom
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:chocolate-doom/chocolate-doom
- Loading branch information
Showing
25 changed files
with
698 additions
and
546 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,6 @@ jobs: | |
run: | | ||
brew install \ | ||
automake \ | ||
dylibbundler \ | ||
sdl2 \ | ||
sdl2_mixer \ | ||
sdl2_net \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
<!-- Tweaks to the pandoc output style to make the resulting HTML | ||
look much nicer. --> | ||
|
||
<style> | ||
body { | ||
background-color: white; | ||
margin-top: 1.5em; | ||
margin-bottom: 4em; | ||
|
||
max-width: 38em; | ||
margin-left: auto; | ||
margin-right: auto; | ||
box-sizing: border-box; | ||
|
||
padding: 0; | ||
padding-left: 1.3em; | ||
padding-right: 1.3em; | ||
|
||
font-size: large; | ||
color: #555; | ||
line-height: 1.6; | ||
|
||
text-align: justify; | ||
overflow-wrap: break-word; | ||
} | ||
|
||
header { | ||
font-family: serif; | ||
margin-top: 0; | ||
margin-bottom: 0.2em; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6 { | ||
margin-top: 0.5em; | ||
margin-bottom: 0.2em; | ||
} | ||
|
||
p { | ||
margin-top: 0; | ||
margin-bottom: 0.8em; | ||
} | ||
|
||
dl { | ||
margin-block-start: 0.5em; | ||
} | ||
</style> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule quickcheck
updated
3 files
+105 −40 | GNUmakefile | |
+1 −0 | extract/.gitignore | |
+15 −24 | testrunner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
6e5c5b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something goes wrong in TrueColor translucency. Translucent functions no longer working, matters no of their modes (additive or blending).
My first though was about using
SDL_PIXELFORMAT_ARGB32
, but looks likes this is not correct.6e5c5b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should work:
6e5c5b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm afraid there is one more problem, now with paletted-only build. Could you please:
The program will crash on toggling from high resolution to normal. Backtrace:
The problem is with this line. Commenting out
SDL_FreeSurface(argbbuffer)
call helps, but it's a no-go and direct way to memory leak. But what else can be done - no idea. 😐