Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modified Assets/dll/dosbox.wbx.zst
Binary file not shown.
8 changes: 6 additions & 2 deletions src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,12 @@ public DOSBox(CoreLoadParameters<object, SyncSettings> lp)
_libDOSBox.PushCDData(curDiscIndex, CDDataStruct.End, CDDataStruct.Last);

// Passing track data to the core
for (var trackIdx = 0; trackIdx < CDDataStruct.Last; trackIdx++) _libDOSBox.PushTrackData(curDiscIndex, trackIdx, CDDataStruct.Tracks[trackIdx]);
}
for (var trackIdx = 0; trackIdx < CDDataStruct.Last; trackIdx++)
{
// Console.WriteLine($"[CD] Adding Track {trackIdx}. Start: {CDDataStruct.Tracks[trackIdx].Start}, End: {CDDataStruct.Tracks[trackIdx].End}, End: {CDDataStruct.Tracks[trackIdx].Offset}");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not needed I guess?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rather keep it there, in case I need to revisit I'll have some quick debug info available

_libDOSBox.PushTrackData(curDiscIndex, trackIdx, CDDataStruct.Tracks[trackIdx]);
}
}
////// CD Loading Logic End

// Getting base config file
Expand Down
4 changes: 2 additions & 2 deletions src/BizHawk.Emulation.Cores/Computers/DOS/LibDOSBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public abstract class LibDOSBox : LibWaterboxCore

public const int VGA_MAX_WIDTH = 640;
public const int VGA_MAX_HEIGHT = 480;
public const int SVGA_MAX_WIDTH = 1024;
public const int SVGA_MAX_HEIGHT = 768;
public const int SVGA_MAX_WIDTH = 2560;
public const int SVGA_MAX_HEIGHT = 2048;

// Default FPS: 70.086592427616921
public const int DEFAULT_FRAMERATE_NUMERATOR_DOS = 3146888;
Expand Down
2 changes: 1 addition & 1 deletion waterbox/dosbox/dosbox-x