Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate latest code from WinUAE #18

Merged
merged 32 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
88c17d9
Small sprite optimization
tonioni Feb 2, 2024
1433cde
Layout B CD32 key fix
tonioni Feb 2, 2024
aa6246e
Fullscreen OSD font update fix
tonioni Feb 2, 2024
65f60af
Do not save GUI size if not visible, do not close GUI when emulation …
tonioni Feb 2, 2024
b91f83e
Wait until last line is complete before finishing it.
tonioni Feb 2, 2024
2a2fa84
Harddrive limit bumped to 50, check limit.
tonioni Feb 3, 2024
e611573
Quickstart disk image/executable drag&drop check, insert in harddrive…
tonioni Feb 3, 2024
6d7cbf8
Option to force (unconnected) floppy data line high.
tonioni Feb 3, 2024
37a3892
Add delay between LD reply bytes
tonioni Feb 3, 2024
f754e51
ALG Marbella Vice needs LD Frame # Mode command.
tonioni Feb 3, 2024
4babc6b
Force floppy data pullup = high if ALG mode.
tonioni Feb 3, 2024
d7e247b
5200b7
tonioni Feb 3, 2024
6be68ce
Add CIA IO ports to CIA debug output
tonioni Feb 10, 2024
46d533a
Overscan+ HBSTRT parameter calculation fix (relative to endhpos)
tonioni Feb 10, 2024
e72512b
Better NTSC vertical positioning in normal overscan mode.
tonioni Feb 10, 2024
0528cb5
Genlock positioning/scaling fixes. Manual offset config entries added.
tonioni Feb 10, 2024
cf5923e
ALG/Picmatic emulation updates.
tonioni Feb 10, 2024
b9218ca
Input remapping fixes.
tonioni Feb 10, 2024
758bf90
ALG LD status info update.
tonioni Feb 10, 2024
fc8b991
5200b8
tonioni Feb 10, 2024
23aa0a3
Reduce LDP ACK delay. It was far too long. (Picmatic Zorton Brothers …
tonioni Feb 12, 2024
8baf48a
CIA E-clock mode on the fly change support
tonioni Feb 12, 2024
3bc43d3
Fix Harddrives panel shortcut keys
tonioni Feb 12, 2024
90713c4
Only show "OCS Denise blanking bug" black lines in Overscan+ or higher.
tonioni Feb 12, 2024
70b5834
Fix 68040 MMU MOVES special case
tonioni Feb 12, 2024
c3779a4
Quickstart ALG/Picmatic PAL/NTSC selection
tonioni Feb 12, 2024
964c060
68060 custom register byte write bug emulation fix
tonioni Feb 12, 2024
2cdbb35
Genlock adjustable blanking support, fix scaling.
tonioni Feb 12, 2024
18aac43
5200b9
tonioni Feb 12, 2024
4a4a707
temp move for merge
emoon Feb 14, 2024
c1e72e2
Merge remote-tracking branch 'WinUAE/master' into winuae-integrate
emoon Feb 14, 2024
40fcf4e
Integrated latest from WinUAE
emoon Feb 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dummy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ void target_default_options(uae_prefs*, int) {
static int old_w = -1;
static int old_h = -1;

bool target_graphics_buffer_update(int monid) {
bool target_graphics_buffer_update(int monid, bool force) {
struct vidbuf_description* avidinfo = &adisplays[monid].gfxvidinfo;
struct vidbuffer* vb = avidinfo->drawbuffer.tempbufferinuse ? &avidinfo->tempbuffer : &avidinfo->drawbuffer;

Expand Down
Loading