Skip to content

Commit

Permalink
Eliminate RamLoadSz
Browse files Browse the repository at this point in the history
  • Loading branch information
MockbaTheBorg committed Oct 16, 2024
1 parent b178800 commit 5ca7e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RunCPM/ccp.h
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ void _ccp(void) {
if (firstBoot && !sFlag) {
if (_sys_exists((uint8*)AUTOEXEC)) {
uint16 cmd = inBuf + 2;
uint8 bytesread = (uint8)_RamLoadSz((uint8*)AUTOEXEC, cmd, 125);
uint8 bytesread = (uint8)_RamLoad((uint8*)AUTOEXEC, cmd, 125);
blen = 0;
while (blen < bytesread && _RamRead(cmd + blen) > 31)
blen++;
Expand Down

0 comments on commit 5ca7e87

Please sign in to comment.