Skip to content

Conversation

@OBattler
Copy link
Member

Summary

Briefly describe what you are submitting.

Checklist

References

Provide links to datasheets or other documentation that helped you implement this pull request.

Cacodemon345 and others added 30 commits February 26, 2024 03:15
Add Novell NetWare 2.x Card Key emulation
Preparation for modem phonebook files
Modem emulation (includinng SLIP connectivity)
Kagamiin and others added 28 commits March 21, 2024 23:32
…u's internal timer emulation

Co-authored-by: OBattler <oubattler@gmail.com>
Co-authored-by: OBattler <oubattler@gmail.com>
Fix incompatible pointers of the generic PIT and PCjr's
And a proper Compaq Portable III 386 BIOS.
Note: The SCAT 286 003 machine is a SCAT-based AMI 286 machine.
Add the Tandy 4000 AT compatible and SCAT-286-003 machines
feature/sound: ESS AudioDrive ES1688
@OBattler OBattler merged commit f2b9f7b into master Mar 23, 2024
/* Load the ROMs for the selected machine. */
if (!machine_available(machine)) {
swprintf(temp, sizeof_w(temp), plat_get_string(IDS_2063), machine_getname());
swprintf(temp, sizeof_w(temp), plat_get_string(STRING_HW_NOT_AVAILABLE_MACHINE), machine_getname());

Check failure

Code scanning / CodeQL

Non-constant format string

The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal. The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal.
memset(tempc, 0, sizeof(tempc));
device_get_name(video_card_getdevice(gfxcard[0]), 0, tempc);
swprintf(temp, sizeof_w(temp), plat_get_string(IDS_2064), tempc);
swprintf(temp, sizeof_w(temp), plat_get_string(STRING_HW_NOT_AVAILABLE_VIDEO), tempc);

Check failure

Code scanning / CodeQL

Non-constant format string

The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal. The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal.
device_get_name(video_card_getdevice(gfxcard[1]), 0, tempc);
swprintf(temp, sizeof_w(temp), plat_get_string(IDS_2163), tempc);
ui_msgbox_header(MBX_INFO, (wchar_t *) IDS_2129, temp);
swprintf(temp, sizeof_w(temp), plat_get_string(STRING_HW_NOT_AVAILABLE_VIDEO2), tempc);

Check failure

Code scanning / CodeQL

Non-constant format string

The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal. The format string argument to [swprintf](1) has a source which cannot be verified to originate from a string literal.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants